source: trunk/admin/plugin.php @ 1590

Last change on this file since 1590 was 1590, checked in by rvelices, 17 years ago

plugins last modifications + events are triggered now from picture.php

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 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-11-01 05:54:35 +0000 (Wed, 01 Nov 2006) $
10// | last modifier : $Author: rvelices $
11// | revision      : $Revision: 1590 $
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');
34include_once(PHPWG_ROOT_PATH.'admin/include/functions_plugins.inc.php');
35check_status(ACCESS_ADMINISTRATOR);
36
37$template->set_filenames(array('plugin' => 'admin/plugin.tpl'));
38
39trigger_action('plugin_admin_menu');
40
41
42if ( isset($page['plugin_admin_menu']) )
43{
44  $template->assign_block_vars('plugin_menu.menu_item',
45      array(
46        'NAME' => l10n('Plugins'),
47        'URL' => PHPWG_ROOT_PATH.'admin.php?page=plugins'
48      )
49    );
50
51  $plug_base_url = PHPWG_ROOT_PATH.'admin.php?page=plugin&amp;section=';
52  foreach ($page['plugin_admin_menu'] as $menu)
53  {
54    if (isset($_GET['section']) and $menu['uid']==$_GET['section'])
55    {
56      $found_menu=$menu;
57    }
58    $template->assign_block_vars('plugin_menu.menu_item',
59        array(
60          'NAME' => $menu['title'],
61          'URL' => $plug_base_url.$menu['uid']
62        )
63      );
64  }
65}
66if ( isset($found_menu) )
67{
68  call_user_func(
69    $found_menu['function'],
70    PHPWG_ROOT_PATH.'admin.php?page=plugin&amp;section='.$found_menu['uid'] );
71}
72
73$template->assign_var_from_handle('ADMIN_CONTENT', 'plugin');
74?>
Note: See TracBrowser for help on using the repository browser.