]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/PluginManager.php
Match for @@
[SourceForge/phpwiki.git] / lib / plugin / PluginManager.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
3 /**
4  Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam
5
6  This file is part of PhpWiki.
7
8  PhpWiki is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  PhpWiki is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 // Set this to true if you don't want regular users to view this page.
24 // So far there are no known security issues.
25 define('REQUIRE_ADMIN', false);
26
27 class WikiPlugin_PluginManager
28 extends WikiPlugin
29 {
30     function getName () {
31         return _("PluginManager");
32     }
33
34     function getDescription () {
35         return _("List of plugins on this wiki");
36     }
37
38     function getVersion() {
39         return preg_replace("/[Revision: $]/", '',
40                             "\$Revision$");
41     }
42
43     function getDefaultArguments() {
44         return array('info' => 'args');
45     }
46
47     function run($dbi, $argstr, &$request, $basepage) {
48         extract($this->getArgs($argstr, $request));
49
50         $h = HTML();
51         $this->_generatePageheader($info, $h);
52
53         if (! REQUIRE_ADMIN || $request->_user->isadmin()) {
54             $h->pushContent(HTML::h2(_("Plugins")));
55
56             $table = HTML::table(array('class' => "pagelist"));
57             $this->_generateColgroups($info, $table);
58             $this->_generateColheadings($info, $table);
59             $this->_generateTableBody($info, $dbi, $request, $table);
60             $h->pushContent($table);
61
62             //$h->pushContent(HTML::h2(_("Disabled Plugins")));
63         }
64         else {
65             $h->pushContent(fmt("You must be an administrator to %s.",
66                                 _("use this plugin")));
67         }
68         return $h;
69     }
70
71     function _generatePageheader(&$info, &$html) {
72         $html->pushContent(HTML::p($this->getDescription()));
73     }
74
75     function _generateColgroups(&$info, &$table) {
76         // specify last two column widths
77         $colgroup = HTML::colgroup();
78         $colgroup->pushContent(HTML::col(array('width' => '0*')));
79         $colgroup->pushContent(HTML::col(array('width' => '0*',
80                                                'align' => 'right')));
81         $colgroup->pushContent(HTML::col(array('width' => '9*')));
82         if ($info == 'args')
83             $colgroup->pushContent(HTML::col(array('width' => '2*')));
84         $table->pushcontent($colgroup);
85     }
86
87     function _generateColheadings(&$info, &$table) {
88         // table headings
89         $tr = HTML::tr();
90         $headings = array(_("Plugin"), _("Version"), _("Description"));
91         if ($info == 'args')
92             $headings []= _("Arguments");
93         foreach ($headings as $title) {
94             $tr->pushContent(HTML::td($title));
95         }
96         $table->pushContent(HTML::thead($tr));
97     }
98
99     function _generateTableBody(&$info, &$dbi, &$request, &$table) {
100         $plugin_dir = 'lib/plugin';
101         if (defined('PHPWIKI_DIR'))
102             $plugin_dir = PHPWIKI_DIR . "/$plugin_dir";
103         $pd = new fileSet($plugin_dir, '*.php');
104         $plugins = $pd->getFiles();
105         unset($pd);
106         sort($plugins);
107
108         // table body
109         $tbody = HTML::tbody();
110         $row_no = 0;
111
112         $w = new WikiPluginLoader;
113         foreach ($plugins as $pluginName) {
114             // instantiate a plugin
115             $pluginName = str_replace(".php", "", $pluginName);
116             $temppluginclass = "<? plugin $pluginName ?>"; // hackish
117             $p = $w->getPlugin($pluginName, false); // second arg?
118             // trap php files which aren't WikiPlugin~s
119             if (!strtolower(substr(get_parent_class($p), 0, 10)) == 'wikiplugin') {
120                 // Security: Hide names of extraneous files within
121                 // plugin dir from non-admins.
122                 if ($request->_user->isAdmin())
123                     trigger_error(sprintf(_("%s does not appear to be a WikiPlugin."),
124                                           $pluginName . ".php"));
125                 continue; // skip this non WikiPlugin file
126             }
127             $desc = $p->getDescription();
128             $ver = $p->getVersion();
129             $arguments = $p->getArgumentsDescription();
130             unset($p); //done querying plugin object, release from memory
131
132             // This section was largely improved by Pierrick Meignen:
133             // make a link if an actionpage exists
134             $pluginNamelink = $pluginName;
135             $pluginDocPageName = _("Help")."/" . $pluginName . "Plugin";
136
137             $pluginDocPageNamelink = false;
138             $localizedPluginName = '';
139             $localizedPluginDocPageName = '';
140
141             if($GLOBALS['LANG'] != "en"){
142                 if (_($pluginName) != $pluginName)
143                     $localizedPluginName = _($pluginName);
144                 if($localizedPluginName && $dbi->isWikiPage($localizedPluginName))
145                     $pluginDocPageNamelink = WikiLink($localizedPluginName,'if_known');
146                 
147                 if (_($pluginDocPageName) != $pluginDocPageName)
148                     $localizedPluginDocPageName = _($pluginDocPageName);
149                 if($localizedPluginDocPageName && 
150                    $dbi->isWikiPage($localizedPluginDocPageName))
151                     $pluginDocPageNamelink = 
152                         WikiLink($localizedPluginDocPageName, 'if_known');
153             }
154             else {
155                 $pluginNamelink = WikiLink($pluginName, 'if_known');
156                 
157                 if ($dbi->isWikiPage($pluginDocPageName))
158                     $pluginDocPageNamelink = WikiLink($pluginDocPageName,'if_known');
159             }
160
161             // highlight alternate rows
162             $row_no++;
163             $group = (int)($row_no / 1); //_group_rows
164             $class = ($group % 2) ? 'evenrow' : 'oddrow';
165             // generate table row
166             $tr = HTML::tr(array('class' => $class));
167             if ($pluginDocPageNamelink) {
168                 // plugin has a description page 'Help/' . 'PluginName' . 'Plugin'
169                 $tr->pushContent(HTML::td($pluginNamelink, HTML::br(),
170                                           $pluginDocPageNamelink));
171                 $pluginDocPageNamelink = false;
172             }
173             else {
174                 // plugin just has an actionpage
175                 $tr->pushContent(HTML::td($pluginNamelink));
176             }
177             $tr->pushContent(HTML::td($ver), HTML::td($desc));
178             if ($info == 'args') {
179                 // add Arguments column
180                 $style = array('style'
181                                => 'font-family:monospace;font-size:smaller');
182                 $tr->pushContent(HTML::td($style, $arguments));
183             }
184             $tbody->pushContent($tr);
185         }
186         $table->pushContent($tbody);
187     }
188 };
189
190 // Local Variables:
191 // mode: php
192 // tab-width: 8
193 // c-basic-offset: 4
194 // c-hanging-comment-ender-p: nil
195 // indent-tabs-mode: nil
196 // End:
197 ?>