]> git.pld-linux.org Git - packages/eventum.git/blobdiff - eventum-config-setup.php
- use single quotes
[packages/eventum.git] / eventum-config-setup.php
index 89f9e7d8b1eefc615492418cb71bdf18391b47a9..d5f5686ed3a333b65dd438bbd00b9753f2abecee 100644 (file)
 //
 
 // 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_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_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_URL", APP_RELATIVE_URL);
-define("APP_COOKIE_DOMAIN", APP_HOSTNAME);
-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_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_URL', APP_RELATIVE_URL);
+define('APP_COOKIE_DOMAIN', APP_HOSTNAME);
+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_DEFAULT_PAGER_SIZE', 5);
+define('APP_DEFAULT_REFRESH_RATE', 5); // in minutes
 
 // new users will use these for default preferences
-define("APP_DEFAULT_ASSIGNED_EMAILS", 1); // if the user will recieve an email when an issue is assigned to him
-define("APP_DEFAULT_NEW_EMAILS", 0); // if the user will recieve an email when ANY issue is created
+define('APP_DEFAULT_ASSIGNED_EMAILS', 1); // if the user will recieve an email when an issue is assigned to him
+define('APP_DEFAULT_NEW_EMAILS', 0); // if the user will recieve an email when ANY issue is created
 
-define("APP_CHARSET", "UTF-8");
-define("APP_DEFAULT_LOCALE", "en_US");
+define('APP_CHARSET', 'UTF-8');
+define('APP_DEFAULT_LOCALE', 'en_US');
 
 // 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_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);
+define('APP_BENCHMARK', false);
 // if full text searching is enabled
-define("APP_ENABLE_FULLTEXT", %{APP_ENABLE_FULLTEXT}%);
+define('APP_ENABLE_FULLTEXT', %{APP_ENABLE_FULLTEXT}%);
 
 // define the type of password hashing to use (MD5, MD5-64)
 define('APP_HASH_TYPE', 'MD5');
This page took 0.04377 seconds and 4 git commands to generate.