| // +----------------------------------------------------------------------+ // // @(#) $Id$ // // definitions of SQL variables @define("APP_SQL_DBTYPE", "mysql"); @define("APP_SQL_DBHOST", "%{APP_SQL_DBHOST}%"); @define("APP_SQL_DBPORT", 3306); @define("APP_SQL_DBNAME", "%{APP_SQL_DBNAME}%"); @define("APP_SQL_DBUSER", "%{APP_SQL_DBUSER}%"); @define("APP_SQL_DBPASS", "%{APP_SQL_DBPASS}%"); @define("APP_DEFAULT_DB", APP_SQL_DBNAME); @define("APP_TABLE_PREFIX", "%{APP_TABLE_PREFIX}%"); @define("APP_NAME", "Eventum"); @define("APP_SHORT_NAME", APP_NAME); // used in the subject of notification emails @define("APP_URL", "http://www.mysql.com/products/eventum/"); @define("APP_HOSTNAME", "%{APP_HOSTNAME}%"); @define("APP_SITE_NAME", APP_NAME); @define("APP_RELATIVE_URL", "%{APP_RELATIVE_URL}%"); @define("APP_BASE_URL", "%{PROTOCOL_TYPE}%" . APP_HOSTNAME . APP_RELATIVE_URL); @define("APP_COOKIE", "eventum"); @define("APP_COOKIE_EXPIRE", time() + (60 * 60 * 8)); @define("APP_PROJECT_COOKIE", "eventum_project"); @define("APP_PROJECT_COOKIE_EXPIRE", time() + (60 * 60 * 24)); @define("APP_DEFAULT_PAGER_SIZE", 5); @define("APP_DEFAULT_REFRESH_RATE", 5); // in minutes @define("APP_CHARSET", "ISO-8859-1"); // define colors used by eventum @define("APP_CELL_COLOR", "#255282"); @define("APP_LIGHT_COLOR", "#DDDDDD"); @define("APP_MIDDLE_COLOR", "#CACACA"); @define("APP_DARK_COLOR", "#CACACA"); @define("APP_CYCLE_COLORS", "#DDDDDD,#CACACA"); @define("APP_INTERNAL_COLOR", "#9C494B"); @define("APP_BENCHMARK", false); ?>