]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/DeadEndPages.php
Activated Id substitution for Subversion
[SourceForge/phpwiki.git] / lib / plugin / DeadEndPages.php
1 <?php
2 rcs_id('$Id$');
3
4 /**
5  * Alias for OrphanedPages. Idea and name from mediawiki.
6  *
7         "SELECT cur_title " . 
8           "FROM cur LEFT JOIN links ON cur_title = l_from " .
9           "WHERE l_from IS NULL " .
10           "AND cur_namespace = 0 " .
11           "ORDER BY cur_title " . 
12           "LIMIT {$offset}, {$limit}";
13  *
14  **/
15 require_once('lib/PageList.php');
16 require_once('lib/plugin/OrphanedPages.php');
17
18 /**
19  */
20 class WikiPlugin_DeadEndPages
21 extends WikiPlugin_OrphanedPages
22 {
23     function getName () {
24         return _("DeadEndPages");
25     }
26 };
27
28 // $Log: not supported by cvs2svn $
29 //
30
31 // Local Variables:
32 // mode: php
33 // tab-width: 8
34 // c-basic-offset: 4
35 // c-hanging-comment-ender-p: nil
36 // indent-tabs-mode: nil
37 // End:
38 ?>