]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/BackLinks.php
add support for all PageList options
[SourceForge/phpwiki.git] / lib / plugin / BackLinks.php
1 <?php // -*-php-*-
2 rcs_id('$Id: BackLinks.php,v 1.27 2004-09-25 16:33:52 rurban Exp $');
3 /**
4  Copyright 1999, 2000, 2001, 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 /**
24  */
25 require_once('lib/PageList.php');
26
27 class WikiPlugin_BackLinks
28 extends WikiPlugin
29 {
30     function getName() {
31         return _("BackLinks");
32     }
33     
34     function getDescription() {
35         return sprintf(_("List all pages which link to %s."), '[pagename]');
36     }
37     
38     function getVersion() {
39         return preg_replace("/[Revision: $]/", '',
40                             "\$Revision: 1.27 $");
41     }
42     
43     function getDefaultArguments() {
44         return array_merge
45             (
46              PageList::supportedArgs(),
47              array('include_self' => false,
48                    'noheader'     => false,
49                    'page'         => '[pagename]',
50                    ));
51     }
52
53     // info arg allows multiple columns
54     // info=mtime,hits,summary,version,author,locked,minor
55     // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges
56     // NEW: info=count : number of links
57     function run($dbi, $argstr, &$request, $basepage) {
58         $this->_args = $this->getArgs($argstr, $request);
59         extract($this->_args);
60         if (empty($page) and $page != '0')
61             return '';
62         
63         $exclude = is_string($exclude) ? explodePageList($exclude) : (is_array($exclude) ? $exclude : array());
64         if (!$include_self)
65             $exclude[] = $page;
66         if ($info) {
67             $info = explode(",", $info);
68             if (in_array('count',$info))
69                 $this->_args['types']['count'] = new _PageList_Column_BackLinks_count('count', _("#"), 'center');
70         }
71         $pagelist = new PageList($info, $exclude, $this->_args);
72         $p = $dbi->getPage($page);
73         $pagelist->addPages($p->getLinks());
74         
75         // Localization note: In English, the differences between the
76         // various phrases spit out here may seem subtle or negligible
77         // enough to tempt you to combine/normalize some of these
78         // strings together, but the grammar employed most by other
79         // languages does not always end up with so subtle a
80         // distinction as it does with English in this case. :)
81         if (!$noheader) {
82             if ($page == $request->getArg('pagename')
83                 && !$dbi->isWikiPage($page)) {
84                     // BackLinks plugin is more than likely being called
85                     // upon for an empty page on said page, while either
86                     // 'browse'ing, 'create'ing or 'edit'ing.
87                     //
88                     // Don't bother displaying a WikiLink 'unknown', just
89                     // the Un~WikiLink~ified (plain) name of the uncreated
90                     // page currently being viewed.
91                     $pagelink = $page;
92                     
93                     if ($pagelist->isEmpty())
94                         return HTML::p(fmt("No other page links to %s yet.", $pagelink));
95                     
96                     if ($pagelist->getTotal() == 1)
97                         $pagelist->setCaption(fmt("One page would link to %s:",
98                                                   $pagelink));
99                     // Some future localizations will actually require
100                     // this... (BelieveItOrNot, English-only-speakers!(:)
101                     //
102                     // else if ($pagelist->getTotal() == 2)
103                     //     $pagelist->setCaption(fmt("Two pages would link to %s:",
104                     //                               $pagelink));
105                     else
106                         $pagelist->setCaption(fmt("%s pages would link to %s:",
107                                                   $pagelist->getTotal(), $pagelink));
108             }
109             else {
110                 // BackLinks plugin is being displayed on a normal page.
111                 $pagelink = WikiLink($page, 'auto');
112                 
113                 if ($pagelist->isEmpty())
114                     return HTML::p(fmt("No page links to %s.", $pagelink));
115                 
116                 //trigger_error("DEBUG: " . $pagelist->getTotal());
117                 
118                 if ($pagelist->getTotal() == 1)
119                     $pagelist->setCaption(fmt("One page links to %s:",
120                                               $pagelink));
121                 // Some future localizations will actually require
122                 // this... (BelieveItOrNot, English-only-speakers!(:)
123                 //
124                 // else if ($pagelist->getTotal() == 2)
125                 //     $pagelist->setCaption(fmt("Two pages link to %s:",
126                 //                               $pagelink));
127                 else
128                     $pagelist->setCaption(fmt("%s pages link to %s:",
129                                               $pagelist->getTotal(), $pagelink));
130             }
131         }
132         return $pagelist;
133     }
134     
135 };
136
137 // how many links from this backLink to other pages
138 class _PageList_Column_BackLinks_count extends _PageList_Column {
139     function _getValue($page, &$revision_handle) {
140         $iter = $page->getPageLinks();
141         $count = $iter->count();
142         return $count;
143     }
144 }
145
146
147 // $Log: not supported by cvs2svn $
148 // Revision 1.26  2004/09/14 10:32:32  rurban
149 // support exclude = plugin-list
150 //
151 // Revision 1.25  2004/09/13 15:00:50  rurban
152 // info=count: number of links at this subpage
153 //
154 // Revision 1.24  2004/04/18 05:42:17  rurban
155 // more fixes for page="0"
156 // better WikiForum support
157 //
158 // Revision 1.23  2004/02/22 23:20:33  rurban
159 // fixed DumpHtmlToDir,
160 // enhanced sortby handling in PageList
161 //   new button_heading th style (enabled),
162 // added sortby and limit support to the db backends and plugins
163 //   for paging support (<<prev, next>> links on long lists)
164 //
165 // Revision 1.22  2004/02/17 12:11:36  rurban
166 // added missing 4th basepage arg at plugin->run() to almost all plugins. This caused no harm so far, because it was silently dropped on normal usage. However on plugin internal ->run invocations it failed. (InterWikiSearch, IncludeSiteMap, ...)
167 //
168 // Revision 1.21  2003/12/22 07:31:57  carstenklapp
169 // Bugfix: commented out debugging code that snuck into the release.
170 //
171 // Revision 1.20  2003/12/14 05:36:31  carstenklapp
172 // Internal changes to prepare for an upcoming feature: Added some
173 // conditions and alternate phrases (alternate wording of text srings
174 // when referring to a non-existant page (i.e. WikiLink 'unknown')) when
175 // calling the BackLinks plugin *within* a non-existant page, such as
176 // from within an editpage or browse template while editing a new page.
177 //
178 // Revision 1.19  2003/01/18 21:19:25  carstenklapp
179 // Code cleanup:
180 // Reformatting; added copyleft, getVersion, getDescription
181 //
182
183 // For emacs users
184 // Local Variables:
185 // mode: php
186 // tab-width: 8
187 // c-basic-offset: 4
188 // c-hanging-comment-ender-p: nil
189 // indent-tabs-mode: nil
190 // End:
191 ?>