]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/IncludePages.php
Normalize header
[SourceForge/phpwiki.git] / lib / plugin / IncludePages.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
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
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 /**
24  * IncludePages: Include a list of multiple pages, based on IncludePage.
25  * usage:   <?plugin IncludePages pages=<!plugin-list BackLinks !> ?>
26  * author:  ReiniUrban
27  * 
28  * Todo: follow RedirectTo
29  */
30
31 include_once("lib/plugin/IncludePage.php");
32  
33 class WikiPlugin_IncludePages
34 extends WikiPlugin_IncludePage
35 {
36     function getName() {
37         return _("IncludePages");
38     }
39
40     function getDescription() {
41         return _("Include multiple pages.");
42     }
43
44     function getVersion() {
45         return preg_replace("/[Revision: $]/", '',
46                             "\$Revision$");
47     }
48
49     function getDefaultArguments() {
50         return array_merge(
51                            array( 'pages'   => false,  // the pages to include
52                                   'exclude' => false), // the pages to exclude
53                            WikiPlugin_IncludePage::getDefaultArguments()
54                            );
55     }
56                 
57     function run($dbi, $argstr, &$request, $basepage) {
58         $args = $this->getArgs($argstr, $request);
59         $html = HTML();
60         if (empty($args['pages']))
61             return $html;
62         $include = new WikiPlugin_IncludePage();
63         
64         if (is_string($args['exclude']) and !empty($args['exclude'])) {
65             $args['exclude'] = explodePageList($args['exclude']);
66             $argstr = preg_replace("/exclude=\S*\s/", "", $argstr);
67         } elseif (is_array($args['exclude'])) {
68             $argstr = preg_replace("/exclude=<\?plugin-list.*?\>/", "", $argstr);
69         }
70         if (is_string($args['pages']) and !empty($args['pages'])) {
71             $args['pages'] = explodePageList($args['pages']);
72             $argstr = preg_replace("/pages=\S*\s/", "", $argstr);       
73         } elseif (is_array($args['pages'])) {
74             $argstr = preg_replace("/pages=<\?plugin-list.*?\>/", "", $argstr);
75         }
76         
77         foreach ($args['pages'] as $page) {
78             if (empty($args['exclude']) or !in_array($page, $args['exclude'])) {
79                 $html = HTML($html, $include->run($dbi, "page='$page' ".$argstr, $request, $basepage));
80             }
81         }
82         return $html;
83     }
84 };
85
86 // For emacs users
87 // Local Variables:
88 // mode: php
89 // tab-width: 8
90 // c-basic-offset: 4
91 // c-hanging-comment-ender-p: nil
92 // indent-tabs-mode: nil
93 // End:
94 ?>