]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/BackLinks.php
and again a couple of more native db args: backlinks
[SourceForge/phpwiki.git] / lib / plugin / BackLinks.php
1 <?php // -*-php-*-
2 rcs_id('$Id: BackLinks.php,v 1.30 2004-11-25 17:20: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.30 $");
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         $args = $this->getArgs($argstr, $request);
59         extract($args);
60         if (empty($page) and $page != '0')
61             return '';
62         // exclude is already expanded in WikiPlugin::getArgs()
63         if (empty($exclude)) $exclude = array();
64         if (!$include_self)
65             $exclude[] = $page;
66         if ($info) {
67             $info = explode(",", $info);
68             if (in_array('count',$info))
69                 $args['types']['count'] = 
70                     new _PageList_Column_BackLinks_count('count', _("#"), 'center');
71         }
72         $args['dosort'] = !empty($args['sortby']); // override DB sort
73         $pagelist = new PageList($info, $exclude, $args);
74         $p = $dbi->getPage($page);
75         $pagelist->addPages($p->getBackLinks(false, $sortby, $limit, $exclude));
76
77         // Localization note: In English, the differences between the
78         // various phrases spit out here may seem subtle or negligible
79         // enough to tempt you to combine/normalize some of these
80         // strings together, but the grammar employed most by other
81         // languages does not always end up with so subtle a
82         // distinction as it does with English in this case. :)
83         if (!$noheader) {
84             if ($page == $request->getArg('pagename')
85                 && !$dbi->isWikiPage($page)) {
86                     // BackLinks plugin is more than likely being called
87                     // upon for an empty page on said page, while either
88                     // 'browse'ing, 'create'ing or 'edit'ing.
89                     //
90                     // Don't bother displaying a WikiLink 'unknown', just
91                     // the Un~WikiLink~ified (plain) name of the uncreated
92                     // page currently being viewed.
93                     $pagelink = $page;
94                     
95                     if ($pagelist->isEmpty())
96                         return HTML::p(fmt("No other page links to %s yet.", $pagelink));
97                     
98                     if ($pagelist->getTotal() == 1)
99                         $pagelist->setCaption(fmt("One page would link to %s:",
100                                                   $pagelink));
101                     // Some future localizations will actually require
102                     // this... (BelieveItOrNot, English-only-speakers!(:)
103                     //
104                     // else if ($pagelist->getTotal() == 2)
105                     //     $pagelist->setCaption(fmt("Two pages would link to %s:",
106                     //                               $pagelink));
107                     else
108                         $pagelist->setCaption(fmt("%s pages would link to %s:",
109                                                   $pagelist->getTotal(), $pagelink));
110             }
111             else {
112                 // BackLinks plugin is being displayed on a normal page.
113                 $pagelink = WikiLink($page, 'auto');
114                 
115                 if ($pagelist->isEmpty())
116                     return HTML::p(fmt("No page links to %s.", $pagelink));
117                 
118                 //trigger_error("DEBUG: " . $pagelist->getTotal());
119                 
120                 if ($pagelist->getTotal() == 1)
121                     $pagelist->setCaption(fmt("One page links to %s:",
122                                               $pagelink));
123                 // Some future localizations will actually require
124                 // this... (BelieveItOrNot, English-only-speakers!(:)
125                 //
126                 // else if ($pagelist->getTotal() == 2)
127                 //     $pagelist->setCaption(fmt("Two pages link to %s:",
128                 //                               $pagelink));
129                 else
130                     $pagelist->setCaption(fmt("%s pages link to %s:",
131                                               $pagelist->getTotal(), $pagelink));
132             }
133         }
134         return $pagelist;
135     }
136     
137 };
138
139 // how many links from this backLink to other pages
140 class _PageList_Column_BackLinks_count extends _PageList_Column {
141     function _getValue($page, &$revision_handle) {
142         $iter = $page->getPageLinks();
143         $count = $iter->count();
144         return $count;
145     }
146 }
147
148
149 // $Log: not supported by cvs2svn $
150 // Revision 1.29  2004/11/23 15:17:19  rurban
151 // better support for case_exact search (not caseexact for consistency),
152 // plugin args simplification:
153 //   handle and explode exclude and pages argument in WikiPlugin::getArgs
154 //     and exclude in advance (at the sql level if possible)
155 //   handle sortby and limit from request override in WikiPlugin::getArgs
156 // ListSubpages: renamed pages to maxpages
157 //
158 // Revision 1.28  2004/10/14 17:16:22  rurban
159 // override DB sort: not applicable
160 //
161 // Revision 1.27  2004/09/25 16:33:52  rurban
162 // add support for all PageList options
163 //
164 // Revision 1.26  2004/09/14 10:32:32  rurban
165 // support exclude = plugin-list
166 //
167 // Revision 1.25  2004/09/13 15:00:50  rurban
168 // info=count: number of links at this subpage
169 //
170 // Revision 1.24  2004/04/18 05:42:17  rurban
171 // more fixes for page="0"
172 // better WikiForum support
173 //
174 // Revision 1.23  2004/02/22 23:20:33  rurban
175 // fixed DumpHtmlToDir,
176 // enhanced sortby handling in PageList
177 //   new button_heading th style (enabled),
178 // added sortby and limit support to the db backends and plugins
179 //   for paging support (<<prev, next>> links on long lists)
180 //
181 // Revision 1.22  2004/02/17 12:11:36  rurban
182 // 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, ...)
183 //
184 // Revision 1.21  2003/12/22 07:31:57  carstenklapp
185 // Bugfix: commented out debugging code that snuck into the release.
186 //
187 // Revision 1.20  2003/12/14 05:36:31  carstenklapp
188 // Internal changes to prepare for an upcoming feature: Added some
189 // conditions and alternate phrases (alternate wording of text srings
190 // when referring to a non-existant page (i.e. WikiLink 'unknown')) when
191 // calling the BackLinks plugin *within* a non-existant page, such as
192 // from within an editpage or browse template while editing a new page.
193 //
194 // Revision 1.19  2003/01/18 21:19:25  carstenklapp
195 // Code cleanup:
196 // Reformatting; added copyleft, getVersion, getDescription
197 //
198
199 // For emacs users
200 // Local Variables:
201 // mode: php
202 // tab-width: 8
203 // c-basic-offset: 4
204 // c-hanging-comment-ender-p: nil
205 // indent-tabs-mode: nil
206 // End:
207 ?>