]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AllUsers.php
fixed login, theme selection, UserPreferences.
[SourceForge/phpwiki.git] / lib / plugin / AllUsers.php
1 <?php // -*-php-*-
2 rcs_id('$Id: AllUsers.php,v 1.1 2002-08-23 18:29:30 rurban Exp $');
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
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  * Based on AllPages.
27  * We currently don't get externally authenticated users which didn't store their Preferences.
28  */
29 class WikiPlugin_AllUsers
30 extends WikiPlugin
31 {
32     function getName () {
33         return _("AllUsers");
34     }
35
36     function getDescription () {
37         return _("With external authentication all users which stored their Preferences. Without external authentication all once signed-in users (from version 1.3.4 on).");
38     }
39
40     function getDefaultArguments() {
41         return array('noheader'      => false,
42                      'include_empty' => true,
43                      'exclude'       => '',
44                      'info'          => '',
45                      'debug'         => false
46                      );
47     }
48     // info arg allows multiple columns info=mtime,hits,summary,version,author,locked,minor,markup or all
49     // exclude arg allows multiple pagenames exclude=WikiAdmin,.SecretUser
50     // include_empty shows also users which stored their preferences, but never saved their homepage
51
52     function run($dbi, $argstr, $request) {
53         extract($this->getArgs($argstr, $request));
54
55         $pagelist = new PageList($info, $exclude);
56         if (!$noheader)
57             $pagelist->setCaption(_("Authenticated users on this wiki (%d total):"));
58
59         // deleted pages show up as version 0.
60         if ($include_empty)
61             $pagelist->_addColumn('version');
62
63         if (defined('DEBUG'))
64             $debug = true;
65
66         if ($debug) $time_start = $this->getmicrotime();
67         $page_iter = $dbi->getAllPages($include_empty);
68         while ($page = $page_iter->next()) {
69             if ($page->isUserPage($include_empty))
70                 $pagelist->addPage($page);
71         }
72
73         if ($debug) $time_end = $this->getmicrotime();
74
75         if ($debug) {
76             $time = round($time_end - $time_start, 3);
77             return HTML::p($pagelist, fmt("elapsed time: %s s", $time));
78         } else {
79             return $pagelist;
80         }
81     }
82
83     function getmicrotime(){
84         list($usec, $sec) = explode(" ",microtime());
85         return (float)$usec + (float)$sec;
86     }
87 };
88
89 // Local Variables:
90 // mode: php
91 // tab-width: 8
92 // c-basic-offset: 4
93 // c-hanging-comment-ender-p: nil
94 // indent-tabs-mode: nil
95 // End:
96 ?>