]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/ListSubpages.php
Use real list instead of middot
[SourceForge/phpwiki.git] / lib / plugin / ListSubpages.php
1 <?php
2
3 /*
4  * Copyright 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 along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /**
24  * ListSubpages:  Lists the names of all SubPages of the current page.
25  *                Based on UnfoldSubpages.
26  * Usage:   <<ListSubpages noheader=1 info=pagename,hits,mtime >>
27  */
28 require_once 'lib/PageList.php';
29
30 class WikiPlugin_ListSubpages
31     extends WikiPlugin
32 {
33     function getDescription()
34     {
35         return _("Lists the names of all SubPages of the current page.");
36     }
37
38     function getDefaultArguments()
39     {
40         return array_merge
41         (
42             PageList::supportedArgs(),
43             array('noheader' => false, // no header
44                 'basepage' => false, // subpages of which page, default: current
45                 'maxpages' => '', // maximum number of pages to include, change that to limit
46                 //'exclude'  => '',
47                 /*'relative' => false, */
48                 'info' => ''
49             ));
50     }
51
52     // info arg allows multiple columns
53     // info=mtime,hits,summary,version,author,locked,minor,count
54     // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges
55
56     /**
57      * @param WikiDB $dbi
58      * @param string $argstr
59      * @param WikiRequest $request
60      * @param string $basepage
61      * @return mixed
62      */
63     function run($dbi, $argstr, &$request, $basepage)
64     {
65         $args = $this->getArgs($argstr, $request);
66
67         if (isset($args['limit']) && !is_limit($args['limit'])) {
68             return HTML::p(array('class' => "error"),
69                            _("Illegal “limit” argument: must be an integer or two integers separated by comma"));
70         }
71
72         if ($args['basepage'])
73             $pagename = $args['basepage'];
74         else
75             $pagename = $request->getArg('pagename');
76
77         // FIXME: explodePageList from stdlib doesn't seem to work as
78         // expected when there are no subpages. (see also
79         // UnfoldSubPages plugin)
80         $subpages = explodePageList($pagename . '/' . '*');
81         if (!$subpages) {
82             return HTML::p(array('class' => 'warning'),
83                 sprintf(_("%s has no subpages defined."), $pagename));
84         }
85         extract($args);
86
87         $content = HTML();
88         //$subpages = array_reverse($subpages); // TODO: why?
89         if ($maxpages) {
90             $subpages = array_slice($subpages, 0, $maxpages);
91         }
92
93         $descrip = fmt("SubPages of %s:",
94             WikiLink($pagename, 'auto'));
95         if ($info) {
96             $info = explode(",", $info);
97             if (in_array('count', $info))
98                 $args['types']['count'] = new _PageList_Column_ListSubpages_count('count', _("#"), 'center');
99         }
100         $pagelist = new PageList($info, $exclude, $args);
101         if (!$noheader)
102             $pagelist->setCaption($descrip);
103
104         foreach ($subpages as $page) {
105             // A page cannot include itself. Avoid doublettes.
106             static $included_pages = array();
107             if (in_array($page, $included_pages)) {
108                 $content->pushContent(HTML::p(sprintf(_("Recursive inclusion of page %s ignored"),
109                     $page)));
110                 continue;
111             }
112             array_push($included_pages, $page);
113             //if ($relative) {
114             // TODO: add relative subpage name display to PageList class
115             //}
116             $pagelist->addPage($page);
117
118             array_pop($included_pages);
119         }
120         $content->pushContent($pagelist);
121         return $content;
122     }
123 }
124
125 // how many backlinks for this subpage
126 class _PageList_Column_ListSubpages_count extends _PageList_Column
127 {
128     function _getValue($page, &$revision_handle)
129     {
130         $iter = $page->getBackLinks();
131         $count = $iter->count();
132         return $count;
133     }
134 }
135
136 // Local Variables:
137 // mode: php
138 // tab-width: 8
139 // c-basic-offset: 4
140 // c-hanging-comment-ender-p: nil
141 // indent-tabs-mode: nil
142 // End: