source: trunk/admin/plugin.php @ 1655

Last change on this file since 1655 was 1655, checked in by rvelices, 17 years ago
  • plugins admin menu appear now in the admin page menubar
  • plugins are loaded immediately after loading the config (allow

them to hack more of pwg like user init, template init etc...)

  • trigger event format_exif_data (for picture display only)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2006-12-14 00:58:57 +0000 (Thu, 14 Dec 2006) $
10// | last modifier : $Author: rvelices $
11// | revision      : $Revision: 1655 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28if( !defined("PHPWG_ROOT_PATH") )
29{
30  die ("Hacking attempt!");
31}
32
33include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
34check_status(ACCESS_ADMINISTRATOR);
35
36$template->set_filenames(array('plugin' => 'admin/plugin.tpl'));
37
38if ( isset($page['plugin_admin_menu']) )
39{
40  foreach ($page['plugin_admin_menu'] as $menu)
41  {
42    if (isset($_GET['section']) and $menu['uid']==$_GET['section'])
43    {
44      $found_menu=$menu;
45      break;
46    }
47  }
48}
49
50if ( isset($found_menu) )
51{
52  $template->assign_var('PLUGIN_TITLE', $found_menu['title'] );
53  call_user_func(
54    $found_menu['function'],
55    PHPWG_ROOT_PATH.'admin.php?page=plugin&amp;section='.$found_menu['uid'] );
56}
57
58$template->assign_var_from_handle('ADMIN_CONTENT', 'plugin');
59?>
Note: See TracBrowser for help on using the repository browser.