]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/IncludeSiteMap.php
New FSF address
[SourceForge/phpwiki.git] / lib / plugin / IncludeSiteMap.php
1 <?php // -*-php-*-
2 // $Id$
3 /**
4  * Copyright 2003,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 /**
24  * http://sourceforge.net/tracker/?func=detail&aid=537380&group_id=6121&atid=306121
25  *
26  * Submitted by: Cuthbert Cat (cuthbertcat)
27  * Redesigned by Reini Urban
28  *
29  * This is a quick mod of BackLinks to do the job recursively. If your
30  * site is categorized correctly, and all the categories are listed in
31  * CategoryCategory, then a RecBackLinks there will produce one BIG(!)
32  * contents page for the entire site.
33  * The list is as deep as the recursion level ('reclimit').
34  *
35  * 'includepages': passed verbatim to the IncludePage plugin. Default: "words=50"
36  *                 To disable words=50 use e.g. something like includepages="quiet=0"
37  * 'reclimit':     Max Recursion depth. Default: 2
38  * 'direction':    Get BackLinks or forward links (links listed on the page)
39  * 'firstreversed': If true, get BackLinks for the first page and forward
40  *                 links for the rest. Only applicable when direction = 'forward'.
41  * 'excludeunknown': If true (default) then exclude any mentioned pages
42  *                 which don't exist yet.  Only applicable when direction='forward'.
43  */
44
45 require_once('lib/PageList.php');
46 require_once('lib/plugin/SiteMap.php');
47
48 class WikiPlugin_IncludeSiteMap
49 extends WikiPlugin_SiteMap
50 {
51   function getName () {
52     return _("IncludeSiteMap");
53   }
54
55   function getDescription () {
56     return sprintf(_("Include recursively all linked pages starting at %s"),
57                    $this->_pagename);
58   }
59
60   function getDefaultArguments() {
61       return array('exclude'        => '',
62                    'include_self'   => 0,
63                    'noheader'       => 0,
64                    'page'           => '[pagename]',
65                    'description'    => $this->getDescription(),
66                    'reclimit'       => 2,
67                    'info'           => false,
68                    'direction'      => 'back',
69                    'firstreversed'  => false,
70                    'excludeunknown' => true,
71                    'includepages'   => 'words=50'
72                    );
73     }
74
75     function run($dbi, $argstr, &$request, $basepage) {
76       return WikiPlugin_SiteMap::run($dbi, $argstr, $request, $basepage);
77     }
78 }
79
80 // Local Variables:
81 // mode: php
82 // tab-width: 8
83 // c-basic-offset: 4
84 // c-hanging-comment-ender-p: nil
85 // indent-tabs-mode: nil
86 // End:
87 ?>