aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_plugins.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-10-31 02:41:32 +0000
committerrvelices <rv-github@modusoptimus.com>2006-10-31 02:41:32 +0000
commita81bac0f15907d81da4e9fea978840b9a10210c8 (patch)
tree7ad7312cea1e447a698e627093614174f5a7552e /include/functions_plugins.inc.php
parent9c3e182268ed2bc5df5f31cf4045b217f7ad8791 (diff)
plugins go now in the #plugins table
git-svn-id: http://piwigo.org/svn/trunk@1584 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_plugins.inc.php')
-rw-r--r--include/functions_plugins.inc.php53
1 files changed, 39 insertions, 14 deletions
diff --git a/include/functions_plugins.inc.php b/include/functions_plugins.inc.php
index 23b6df5cd..f381b0a89 100644
--- a/include/functions_plugins.inc.php
+++ b/include/functions_plugins.inc.php
@@ -67,6 +67,10 @@ function add_event_handler($event, $func, $priority=50, $accepted_args=1)
}
+/* Triggers an event and calls all registered event handlers
+ * @param string $event name of the event
+ * @param mixed $data data to pass to handlers
+*/
function trigger_event($event, $data=null)
{
global $pwg_event_handlers;
@@ -123,32 +127,53 @@ function trigger_event($event, $data=null)
-
-function get_active_plugins($runtime = true)
+/* Returns an array of plugins defined in the database
+ * @param string $state optional filter on this state
+ * @param string $id optional returns only data about given plugin
+*/
+function get_db_plugins($state='', $id='')
{
- global $conf;
- if ($conf['disable_plugins'] and $runtime)
+ $query = '
+SELECT * FROM '.PLUGINS_TABLE;
+ if (!empty($state) or !empty($id) )
{
- return array();
+ $query .= '
+WHERE 1=1';
+ if (!empty($state))
+ {
+ $query .= '
+ AND state="'.$state.'"';
+ }
+ if (!empty($id))
+ {
+ $query .= '
+ AND id="'.$id.'"';
+ }
}
- if (empty($conf['active_plugins']))
+
+ $result = pwg_query($query);
+ $plugins = array();
+ while ($row = mysql_fetch_array($result))
{
- return array();
+ array_push($plugins, $row);
}
- return explode(',', $conf['active_plugins']);
-
+ return $plugins;
}
+/*loads all the plugins on startup*/
function load_plugins()
{
- $plugins = get_active_plugins();
+ global $conf;
+ if ($conf['disable_plugins'])
+ {
+ return;
+ }
+
+ $plugins = get_db_plugins('active');
foreach( $plugins as $plugin)
{
- if (!empty($plugin))
- {
- include_once( PHPWG_PLUGINS_PATH.$plugin.'/index.php' );
- }
+ @include_once( PHPWG_PLUGINS_PATH.$plugin['id'].'/index.php' );
}
trigger_event('plugins_loaded');
}