summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorBarak Korren <[email protected]>2013-04-01 18:32:05 +0300
committerBarak Korren <[email protected]>2013-04-01 18:32:05 +0300
commit046ec657602ea46e7b32d3f3e387104d89ac6d8a (patch)
treea3f07587ca1f91b67f4bedb6110698da30eea782 /include/functions.php
parent8401101d5051c4ccad140fc4b062fa9c780d06d9 (diff)
Move tuning settings to different file so config.php isn't overcrowded
by default
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/functions.php b/include/functions.php
index fa63c9baa..7d1cf6b9a 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -30,6 +30,27 @@
require_once 'config.php';
+ /**
+ * Define a constant if not already defined
+ *
+ * @param string $name The constant name.
+ * @param mixed $value The constant value.
+ * @access public
+ * @return boolean True if defined successfully or not.
+ */
+ function define_default($name, $value) {
+ // Note: performence freaks should define everything in
+ // tunables.php in config.php becasue if will make defined()
+ // run much faster, see 'tris+php at tfconsulting dot com dot
+ // au' comment here:
+ // http://www.php.net/manual/en/function.defined.php#89886
+ defined($name) or define($name, $value);
+ }
+
+ // Require tunables.php to define tunable constants (That may have
+ // already been denied in config.php)
+ require_once 'tunables.php';
+
if (DB_TYPE == "pgsql") {
define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');
} else {