aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_plugins.inc.php
blob: f381b0a89c8bb175bcbd89e5dd9bdaa3ceea06f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery                           |
// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
// | branch        : BSF (Best So Far)
// | file          : $Id$
// | last update   : $Date$
// | last modifier : $Author$
// | revision      : $Revision$
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify  |
// | it under the terms of the GNU General Public License as published by  |
// | the Free Software Foundation                                          |
// |                                                                       |
// | This program is distributed in the hope that it will be useful, but   |
// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
// | General Public License for more details.                              |
// |                                                                       |
// | You should have received a copy of the GNU General Public License     |
// | along with this program; if not, write to the Free Software           |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA.                                                                  |
// +-----------------------------------------------------------------------+

/*
Events and event handlers are the core of PhpWebGallery plugin management.
Plugins are addons that are found in plugins subdirectory. If activated, PWG
will include the index.php of each plugin.
Events are triggered by PWG core code. Plugins (or even PWG itself) can
register their functions to handle these events. An event is identified by a
string.
*/

define('PHPWG_PLUGINS_PATH',PHPWG_ROOT_PATH.'plugins/');

/* Register a event handler.
 * @param string $event the name of the event to listen to
 * @param mixed $func the function that will handle the event
*/
function add_event_handler($event, $func, $priority=50, $accepted_args=1)
{
  global $pwg_event_handlers;

  if ( isset($pwg_event_handlers[$event]["$priority"]) )
  {
    foreach($pwg_event_handlers[$event]["$priority"] as $handler)
    {
      if ( $handler['function'] == $func )
      {
        return true;
      }
    }
  }

  trigger_event('add_event_handler',
      array('event'=>$event, 'function'=>$func)
    );

  $pwg_event_handlers[$event]["$priority"][] =
    array(
      'function'=>$func,
      'accepted_args'=>$accepted_args);

  return true;
}


/* 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;
  if ($event!='pre_trigger_event' and $event!='post_trigger_event')
  {// special case
    trigger_event('pre_trigger_event',
        array('event'=>$event, 'data'=>$data) );
    if ( !isset($pwg_event_handlers[$event]) )
    {
      trigger_event('post_trigger_event',
          array('event'=>$event, 'data'=>$data) );
    }
  }

  if ( !isset($pwg_event_handlers[$event]) )
  {
    return $data;
  }
  $args = array_slice(func_get_args(), 2);

  foreach ($pwg_event_handlers[$event] as $priority => $handlers)
  {
    if ( !is_null($handlers) )
    {
      foreach($handlers as $handler)
      {
        $all_args = array_merge( array($data), $args);
        $function_name = $handler['function'];
        $accepted_args = $handler['accepted_args'];

        if ( $accepted_args == 1 )
          $the_args = array($data);
        elseif ( $accepted_args > 1 )
          $the_args = array_slice($all_args, 0, $accepted_args);
        elseif ( $accepted_args == 0 )
          $the_args = NULL;
        else
          $the_args = $all_args;

        $data = call_user_func_array($function_name, $the_args);
      }
    }
  }

  if ($event!='pre_trigger_event' and $event!='post_trigger_event')
  {
    trigger_event('post_trigger_event',
        array('event'=>$event, 'data'=>$data) );
  }

  return $data;
}




/* 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='')
{
  $query = '
SELECT * FROM '.PLUGINS_TABLE;
  if (!empty($state) or !empty($id) )
  {
    $query .= '
WHERE 1=1';
    if (!empty($state))
    {
      $query .= '
  AND state="'.$state.'"';
    }
    if (!empty($id))
    {
      $query .= '
  AND id="'.$id.'"';
    }
  }

  $result = pwg_query($query);
  $plugins = array();
  while ($row = mysql_fetch_array($result))
  {
    array_push($plugins, $row);
  }
  return $plugins;
}


/*loads all the plugins on startup*/
function load_plugins()
{
  global $conf;
  if ($conf['disable_plugins'])
  {
    return;
  }

  $plugins = get_db_plugins('active');
  foreach( $plugins as $plugin)
  {
    @include_once( PHPWG_PLUGINS_PATH.$plugin['id'].'/index.php' );
  }
  trigger_event('plugins_loaded');
}
?>