summaryrefslogtreecommitdiff
path: root/lib/common.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-07-09 23:12:53 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-07-09 23:12:53 -0700
commit15f6309deacf64e6b408d45a4eb19852d36f9f72 (patch)
treece0a6ccd061eccb91537e8cf8600cb3f0f2c2faa /lib/common.php
parentf527b8a8d7cf38e21c0ceb8d54cfae2d679e1564 (diff)
add a little syntactical sugar for adding plugins
Diffstat (limited to 'lib/common.php')
-rw-r--r--lib/common.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/common.php b/lib/common.php
index 832667d81..c47702779 100644
--- a/lib/common.php
+++ b/lib/common.php
@@ -282,6 +282,39 @@ if (function_exists('date_default_timezone_set')) {
date_default_timezone_set('UTC');
}
+function addPlugin($name, $attrs = null)
+{
+ $name = ucfirst($name);
+ $pluginclass = "{$name}Plugin";
+
+ if (!class_exists($pluginclass)) {
+
+ $files = array("local/plugins/{$pluginclass}.php",
+ "local/plugins/{$name}/{$pluginclass}.php",
+ "local/{$pluginclass}.php",
+ "local/{$name}/{$pluginclass}.php",
+ "plugins/{$pluginclass}.php",
+ "plugins/{$name}/{$pluginclass}.php");
+
+ foreach ($files as $file) {
+ $fullpath = INSTALLDIR.'/'.$file;
+ if (@file_exists($fullpath)) {
+ include_once($fullpath);
+ break;
+ }
+ }
+ }
+
+ $inst = new $pluginclass();
+
+ if (!empty($attrs)) {
+ foreach ($attrs as $aname => $avalue) {
+ $inst->$aname = $avalue;
+ }
+ }
+ return $inst;
+}
+
// From most general to most specific:
// server-wide, then vhost-wide, then for a path,
// finally for a dir (usually only need one of the last two).