]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AllPages.php
Replace tabs by spaces; remove EOL spaces
[SourceForge/phpwiki.git] / lib / plugin / AllPages.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
3 /**
4  * Copyright 1999,2000,2001,2002,2004,2005 $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  * Supports author=[] (current user), owner=[] and creator=[]
27  * to be able to have the action pages:
28  *   AllPagesCreatedByMe, AllPagesOwnedByMe, AllPagesLastAuthoredByMe
29  */
30 class WikiPlugin_AllPages
31 extends WikiPlugin
32 {
33     function getName () {
34         return _("AllPages");
35     }
36
37     function getDescription () {
38         return _("List all pages in this wiki.");
39     }
40
41     function getVersion() {
42         return preg_replace("/[Revision: $]/", '',
43                             "\$Revision$");
44     }
45
46     function getDefaultArguments() {
47         return array_merge
48             (
49              PageList::supportedArgs(),
50              array(
51                    'noheader'      => false,
52                    'include_empty' => false,
53                    //'pages'         => false, // DONT, this would be ListPages then.
54                    'info'          => '',
55                    'debug'         => false,
56                    'userpages'     => false
57                    ));
58     }
59
60     // info arg allows multiple columns
61     // info=mtime,hits,summary,version,author,locked,minor,markup or all
62     // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges
63     // sortby: [+|-] pagename|mtime|hits
64
65     // 2004-07-08 22:05:35 rurban: turned off &$request to prevent from strange bug below
66     function run($dbi, $argstr, $request, $basepage) {
67         $args = $this->getArgs($argstr, $request);
68
69         $pages = false;
70         // Todo: extend given _GET args
71         if (defined('DEBUG') && DEBUG && $args['debug']) {
72             $timer = new DebugTimer;
73         }
74         $caption = _("All pages in this wiki ({total} total):");
75
76         if ( !empty($args['userpages']) ) {
77             $pages = PageList::allUserPages($args['include_empty'],
78                                                $args['sortby'], ''
79                                                );
80             $caption = _("List of user-created pages ({total} total):");
81             $args['count'] = $request->getArg('count');
82         } elseif ( !empty($args['owner']) ) {
83             $pages = PageList::allPagesByOwner($args['owner'], $args['include_empty'],
84                                                $args['sortby'], ''
85                                                );
86             $caption = fmt("List of pages owned by [%s] ({total} total):",
87                            WikiLink($args['owner'] == '[]'
88                                     ? $request->_user->getAuthenticatedId()
89                                     : $args['owner'],
90                                     'if_known'));
91             $args['count'] = $request->getArg('count');
92             $pages->_options['count'] = $args['count'];
93         } elseif ( !empty($args['author']) ) {
94             $pages = PageList::allPagesByAuthor($args['author'], $args['include_empty'],
95                                                 $args['sortby'], ''
96                                                 );
97             $caption = fmt("List of pages last edited by [%s] ({total} total):",
98                            WikiLink($args['author'] == '[]'
99                                     ? $request->_user->getAuthenticatedId()
100                                     : $args['author'],
101                                     'if_known'));
102             $args['count'] = $request->getArg('count');
103             $pages->_options['count'] = $args['count'];
104         } elseif ( !empty($args['creator']) ) {
105             $pages = PageList::allPagesByCreator($args['creator'], $args['include_empty'],
106                                                  $args['sortby'], ''
107                                                  );
108             $caption = fmt("List of pages created by [%s] ({total} total):",
109                            WikiLink($args['creator'] == '[]'
110                                     ? $request->_user->getAuthenticatedId()
111                                     : $args['creator'],
112                                     'if_known'));
113             $args['count'] = $request->getArg('count');
114             $pages->_options['count'] = $args['count'];
115         //} elseif ($pages) {
116         //    $args['count'] = count($pages);
117         } else {
118             if (! $request->getArg('count'))
119                 $args['count'] = $dbi->numPages($args['include_empty'], $args['exclude']);
120             else
121                 $args['count'] = $request->getArg('count');
122         }
123         if (empty($args['count']) and !empty($pages))
124             $args['count'] = count($pages);
125         $pagelist = new PageList($args['info'], $args['exclude'], $args);
126         if (!$args['noheader']) $pagelist->setCaption($caption);
127
128         // deleted pages show up as version 0.
129         if ($args['include_empty'])
130             $pagelist->_addColumn('version');
131
132         if ($pages !== false)
133             $pagelist->addPageList($pages);
134         else
135             $pagelist->addPages( $dbi->getAllPages($args['include_empty'], $args['sortby'],
136                                                    $args['limit']) );
137         if (defined('DEBUG') && DEBUG && $args['debug']) {
138             return HTML($pagelist,
139                         HTML::p(fmt("Elapsed time: %s s", $timer->getStats())));
140         } else {
141             return $pagelist;
142         }
143     }
144 };
145
146 // Local Variables:
147 // mode: php
148 // tab-width: 8
149 // c-basic-offset: 4
150 // c-hanging-comment-ender-p: nil
151 // indent-tabs-mode: nil
152 // End:
153 ?>