]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/PopularTags.php
Always return something
[SourceForge/phpwiki.git] / lib / plugin / PopularTags.php
1 <?php
2
3 /*
4  * Copyright 2007 Reini Urban
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 /* Usage:
24  *   <<PopularTags >>
25  */
26
27 require_once 'lib/PageList.php';
28
29 class WikiPlugin_PopularTags
30     extends WikiPlugin
31 {
32     function getName()
33     {
34         return _("PopularTags");
35     }
36
37     function getDescription()
38     {
39         return _("List the most popular tags.");
40     }
41
42     function getDefaultArguments()
43     {
44         return array('pagename' => '[pagename]',
45             'limit' => 10,
46             'mincount' => 5,
47             'noheader' => 0,
48         );
49     }
50
51     function run($dbi, $argstr, &$request, $basepage)
52     {
53         $args = $this->getArgs($argstr, $request);
54         extract($args);
55
56         $maincat = $dbi->getPage(_("CategoryCategory"));
57         $bi = $maincat->getBackLinks(false);
58         $bl = array();
59         while ($b = $bi->next()) {
60             $name = $b->getName();
61             if (preg_match("/^" . _("Template") . "/", $name)) continue;
62             $pages = $b->getBackLinks(false);
63             $bl[] = array('name' => $name,
64                 'count' => $pages->count());
65         }
66
67         usort($bl, 'cmp_by_count');
68         $html = HTML::ul();
69         $i = 0;
70         foreach ($bl as $b) {
71             $i++;
72             $name = $b['name'];
73             $count = $b['count'];
74             if ($count < $mincount) break;
75             if ($i > $limit) break;
76             $wo = preg_replace("/^(" . _("Category") . "|"
77                 . _("Topic") . ")/", "", $name);
78             $wo = HTML(HTML::span($wo), HTML::raw("&nbsp;"), HTML::small("(" . $count . ")"));
79             $link = WikiLink($name, 'auto', $wo);
80             $html->pushContent(HTML::li($link));
81         }
82         return $html;
83     }
84 }
85
86 // get list of categories sorted by number of backlinks
87 function cmp_by_count($a, $b)
88 {
89     if ($a['count'] == $b['count']) return 0;
90     return $a['count'] < $b['count'] ? 1 : -1;
91 }
92
93 // Local Variables:
94 // mode: php
95 // tab-width: 8
96 // c-basic-offset: 4
97 // c-hanging-comment-ender-p: nil
98 // indent-tabs-mode: nil
99 // End: