]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AllPages.php
added missing 4th basepage arg at plugin->run() to almost all plugins. This caused...
[SourceForge/phpwiki.git] / lib / plugin / AllPages.php
1 <?php // -*-php-*-
2 rcs_id('$Id: AllPages.php,v 1.19 2004-02-17 12:11:36 rurban Exp $');
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 require_once('lib/PageList.php');
24
25 /**
26  */
27 class WikiPlugin_AllPages
28 extends WikiPlugin
29 {
30     function getName () {
31         return _("AllPages");
32     }
33
34     function getDescription () {
35         return _("List all pages in this wiki.");
36     }
37
38     function getVersion() {
39         return preg_replace("/[Revision: $]/", '',
40                             "\$Revision: 1.19 $");
41     }
42
43     function getDefaultArguments() {
44         return array('noheader'      => false,
45                      'include_empty' => false,
46                      'exclude'       => '',
47                      'info'          => '',
48                      'sortby'        => '',   // +mtime,-pagename
49                      'debug'         => false
50                      );
51     }
52     // info arg allows multiple columns
53     // info=mtime,hits,summary,version,author,locked,minor,markup or all
54     // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges
55     // sortby: [+|-] pagename|mtime|hits
56
57     function run($dbi, $argstr, &$request, $basepage) {
58         extract($this->getArgs($argstr, $request));
59         // Todo: extend given _GET args
60         if ($sorted = $request->getArg('sortby'))
61             $sortby = $sorted;
62         elseif ($sortby)
63             $request->setArg('sortby',$sortby);
64
65         $pagelist = new PageList($info, $exclude, $this->getArgs($argstr, $request));
66         if ($sortby) $sorted = $pagelist->sortby($sortby,'db');
67         else $sorted='pagename';
68         if (!$noheader)
69             $pagelist->setCaption(_("Pages in this wiki (%d total):"));
70
71         // deleted pages show up as version 0.
72         if ($include_empty)
73             $pagelist->_addColumn('version');
74
75         if (defined('DEBUG') and DEBUG)
76             $timer = new DebugTimer;
77         //handle $sortby
78         $pagelist->addPages( $dbi->getAllPages($include_empty, $sorted) );
79
80         if (defined('DEBUG') and DEBUG) {
81             return HTML($pagelist,
82                         HTML::p(fmt("Elapsed time: %s s", $timer->getStats())));
83         } else {
84             return $pagelist;
85         }
86     }
87
88     function getmicrotime(){
89         list($usec, $sec) = explode(" ",microtime());
90         return (float)$usec + (float)$sec;
91     }
92 };
93
94 // $Log: not supported by cvs2svn $
95 // Revision 1.18  2004/01/25 07:58:30  rurban
96 // PageList sortby support in PearDB and ADODB backends
97 //
98 // Revision 1.17  2003/02/27 20:10:30  dairiki
99 // Disable profiling output when DEBUG is defined but false.
100 //
101 // Revision 1.16  2003/02/21 04:08:26  dairiki
102 // New class DebugTimer in prepend.php to help report timing.
103 //
104 // Revision 1.15  2003/01/18 21:19:25  carstenklapp
105 // Code cleanup:
106 // Reformatting; added copyleft, getVersion, getDescription
107 //
108
109 // Local Variables:
110 // mode: php
111 // tab-width: 8
112 // c-basic-offset: 4
113 // c-hanging-comment-ender-p: nil
114 // indent-tabs-mode: nil
115 // End:
116 ?>