]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/ListPages.php
function _getValue is not private
[SourceForge/phpwiki.git] / lib / plugin / ListPages.php
1 <?php
2
3 /*
4  * Copyright 2004 $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 require_once 'lib/PageList.php';
24
25 /**
26  * ListPages - List pages that are explicitly given as the pages argument.
27  *
28  * Mainly used to see some ratings and recommendations.
29  * But also possible to list some Categories or Users, or as generic
30  * frontend for plugin-list page lists.
31  *
32  * @author: Dan Frankowski
33  */
34 class WikiPlugin_ListPages
35     extends WikiPlugin
36 {
37     function getName()
38     {
39         return _("ListPages");
40     }
41
42     function getDescription()
43     {
44         return _("List pages that are explicitly given as the pages argument.");
45     }
46
47     function getDefaultArguments()
48     {
49         return array_merge
50         (
51             PageList::supportedArgs(),
52             array('pages' => false,
53                 //'exclude'  => false,
54                 'info' => 'pagename',
55                 'dimension' => 0,
56             ));
57     }
58
59     // info arg allows multiple columns
60     // info=mtime,hits,summary,version,author,locked,minor
61     // additional info args:
62     //   top3recs      : recommendations
63     //   numbacklinks  : number of backlinks (links to the given page)
64     //   numpagelinks  : number of forward links (links at the given page)
65
66     function run($dbi, $argstr, &$request, $basepage)
67     {
68         $args = $this->getArgs($argstr, $request);
69
70         extract($args);
71         // If the ratings table does not exist, or on dba it will break otherwise.
72         // Check if WikiTheme isa 'wikilens'
73         if ($info == 'pagename' and isa($GLOBALS['WikiTheme'], 'wikilens'))
74             $info .= ",top3recs";
75         if ($info)
76             $info = explode(',', $info);
77         else
78             $info = array();
79
80         if (in_array('top3recs', $info)) {
81             require_once 'lib/wikilens/Buddy.php';
82             require_once 'lib/wikilens/PageListColumns.php';
83
84             $active_user = $request->getUser();
85             $active_userid = $active_user->_userid;
86
87             // if userids is null or empty, fill it with just the active user
88             if (!isset($userids) || !is_array($userids) || !count($userids)) {
89                 // TKL: moved getBuddies call inside if statement because it was
90                 // causing the userids[] parameter to be ignored
91                 if (is_string($active_userid)
92                     and strlen($active_userid)
93                         and $active_user->isSignedIn()
94                 ) {
95                     $userids = getBuddies($active_userid, $dbi);
96                 } else {
97                     $userids = array();
98                     // XXX: this wipes out the category caption...
99                     $caption = _("You must be logged in to view ratings.");
100                 }
101             }
102
103             // find out which users we should show ratings for
104             $allowed_users = array();
105             foreach ($userids as $userid) {
106                 $user = new RatingsUser($userid);
107                 if ($user->allow_view_ratings($active_user)) {
108                     array_push($allowed_users, $user);
109                 }
110                 // PHP's silly references... (the behavior with this line commented
111                 // out is... odd)
112                 unset($user);
113             }
114             $options = array('dimension' => $dimension,
115                 'users' => $allowed_users);
116             $args = array_merge($options, $args);
117         }
118         if (empty($pages) and $pages != '0')
119             return '';
120
121         if (in_array('numbacklinks', $info)) {
122             $args['types']['numbacklinks'] = new _PageList_Column_ListPages_count('numbacklinks', _("#"), true);
123         }
124         if (in_array('numpagelinks', $info)) {
125             $args['types']['numpagelinks'] = new _PageList_Column_ListPages_count('numpagelinks', _("#"));
126         }
127
128         $pagelist = new PageList($info, $exclude, $args);
129         $pages_array = is_string($pages) ? explodePageList($pages) : (is_array($pages) ? $pages : array());
130         $pagelist->addPageList($pages_array);
131         return $pagelist;
132     }
133 }
134
135 // how many back-/forwardlinks for this page
136 class _PageList_Column_ListPages_count extends _PageList_Column
137 {
138     private function _PageList_Column_ListPages_count($field, $display, $backwards = false)
139     {
140         $this->_direction = $backwards;
141         return $this->_PageList_Column($field, $display, 'center');
142     }
143
144     function _getValue($page, &$revision_handle)
145     {
146         $iter = $page->getLinks($this->_direction);
147         $count = $iter->count();
148         return $count;
149     }
150 }
151
152 // Local Variables:
153 // mode: php
154 // tab-width: 8
155 // c-basic-offset: 4
156 // c-hanging-comment-ender-p: nil
157 // indent-tabs-mode: nil
158 // End: