]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/NewPagesPerUser.php
Use CSS
[SourceForge/phpwiki.git] / lib / plugin / NewPagesPerUser.php
1 <?php
2
3 /*
4  * Copyright (C) 2007 AVL
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  * List all new pages per month per user.
25  * March 2007
26  *   BERTUZZI 20
27  *   URBANR   15
28  *   ...
29  */
30
31 class WikiPlugin_NewPagesPerUser
32     extends WikiPlugin
33 {
34     private function cmp_by_count($a, $b)
35     {
36         if ($a['count'] == $b['count']) return 0;
37         return $a['count'] < $b['count'] ? 1 : -1;
38     }
39
40     function getDescription()
41     {
42         return _("List all new pages per month per user.");
43     }
44
45     function getDefaultArguments()
46     {
47         return array('userid' => '',
48             'month' => 0,
49             'since' => 0,
50             'until' => 0,
51             'comments' => 0,
52             'links' => 1,
53             'debug' => 0,
54         );
55     }
56
57     function run($dbi, $argstr, &$request, $basepage)
58     {
59         global $WikiTheme;
60         $args = $this->getArgs($argstr, $request);
61         extract($args);
62         if ($since)
63             $since = strtotime($since);
64         if ($month) {
65             $since = strtotime($month);
66             $since = mktime(0, 0, 0, date("m", $since), 1, date("Y", $since));
67             $until = mktime(23, 59, 59, date("m", $since) + 1, 0, date("Y", $since));
68         } else
69             $until = 0;
70
71         $iter = $dbi->getAllPages(false, '-mtime');
72         $pages = array();
73
74         while ($page = $iter->next()) {
75             $pagename = $page->getName();
76             if (!$page->exists()) continue;
77             $rev = $page->getRevision(1, false);
78             $date = $rev->get('mtime');
79             //$author = $rev->get('author_id');
80             $author = $page->getOwner();
81             if (defined('DEBUG') && DEBUG && $debug) {
82                 echo "<i>$pagename, ", strftime("%Y-%m-%d %h:%m:%s", $date), ", $author</i><br />\n";
83             }
84             if ($userid and (!preg_match("/" . $userid . "/", $author))) continue;
85             if ($since and $date < $since) continue;
86             if ($until and $date > $until) continue;
87             if (!$comments and preg_match("/\/Comment/", $pagename)) continue;
88             $monthnum = strftime("%Y%m", $date);
89             if (!isset($pages[$monthnum]))
90                 $pages[$monthnum] = array('author' => array(),
91                     'month' => strftime("%B, %Y", $date));
92             if (!isset($pages[$monthnum]['author'][$author]))
93                 $pages[$monthnum]['author'][$author] = array('count' => 0,
94                     'pages' => array());
95             $pages[$monthnum]['author'][$author]['count']++;
96             $pages[$monthnum]['author'][$author]['pages'][] = $pagename;
97         }
98         $iter->free();
99         $html = HTML::table(HTML::col(array('span' => 2,
100                                             'class' => 'align-left')));
101         $nbsp = HTML::raw('&nbsp;');
102         krsort($pages);
103         foreach ($pages as $monthname => $parr) {
104             $html->pushContent(HTML::tr(HTML::td(array('colspan' => 2),
105                 HTML::strong($parr['month']))));
106             uasort($parr['author'], array($this, 'cmp_by_count'));
107             foreach ($parr['author'] as $user => $authorarr) {
108                 $count = $authorarr['count'];
109                 $id = preg_replace("/ /", "_", 'pages-' . $monthname . '-' . $user);
110                 $html->pushContent
111                 (HTML::tr(HTML::td($nbsp, $nbsp,
112                         HTML::img(array('id' => "$id-img",
113                             'src' => $WikiTheme->_findData("images/folderArrowClosed.png"),
114                             'onclick' => "showHideFolder('$id')",
115                             'alt' => _("Click to hide/show"),
116                             'title' => _("Click to hide/show"))),
117                         $nbsp,
118                         $user),
119                     HTML::td($count)
120                 ));
121                 if ($links) {
122                     $pagelist = HTML();
123                     foreach ($authorarr['pages'] as $p)
124                         $pagelist->pushContent(WikiLink($p), ', ');
125                 } else {
126                     $pagelist = join(', ', $authorarr['pages']);
127                 }
128                 $html->pushContent
129                 (HTML::tr(array('id' => $id . '-body',
130                         'style' => 'display:none; background-color: #eee;'),
131                     HTML::td(array('colspan' => 2,
132                             'style' => 'font-size:smaller'),
133                         $pagelist
134                     )));
135             }
136         }
137         return $html;
138     }
139 }
140
141 // Local Variables:
142 // mode: php
143 // tab-width: 8
144 // c-basic-offset: 4
145 // c-hanging-comment-ender-p: nil
146 // indent-tabs-mode: nil
147 // End: