aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialDisambiguations.php
blob: 0243e05dac7db5f0ebb5724aa952a7b05a1b9e02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
/**
 *
 * @package MediaWiki
 * @subpackage SpecialPage
 */

/**
 *
 */
require_once('QueryPage.php');

/**
 *
 * @package MediaWiki
 * @subpackage SpecialPage
 */
class DisambiguationsPage extends PageQueryPage {

	function getName() {
		return 'disambiguations';
	}
	
	function isExpensive( ) { return true; }
	function isSyndicated() { return false; }

	function getPageHeader( ) {
		global $wgUser;
		$sk = $wgUser->getSkin();
		
		#FIXME : probably need to add a backlink to the maintenance page.
		return '<p>'.wfMsg("disambiguationstext", $sk->makeKnownLink(wfMsgForContent('disambiguationspage')) )."</p><br>\n";
	}

	function getSQL() {
		$dbr =& wfGetDB( DB_SLAVE );
		extract( $dbr->tableNames( 'cur', 'links' ) );
		
		$dp = Title::newFromText(wfMsgForContent("disambiguationspage"));
		$dpid = $dp->getArticleID();
			
		$sql = "SELECT ca.cur_namespace AS ns_art, ca.cur_title AS title_art,"
			.        " cb.cur_namespace AS ns_dis, cb.cur_title AS title_dis"
		    . " FROM links as la, links as lb, cur as ca, cur as cb"
		    . " WHERE la.l_to = '{$dpid}'"
		    . " AND la.l_from = lb.l_to"
		    . " AND ca.cur_id = lb.l_from"
		    . " AND cb.cur_id = lb.l_to";

		return $sql;
	}

	function getOrder() {
		return '';
	}
	
	function formatResult( $skin, $result ) {
		global $wgContLang ;
		$ns = $wgContLang->getNamespaces() ;

		$from = $skin->makeKnownLink( $ns[$result->ns_art].':'.$result->title_art ,'');
		$edit = $skin->makeBrokenLink( $ns[$result->ns_art].':'.$result->title_art , "(".wfMsg("qbedit").")" , 'redirect=no');
		$to   = $skin->makeKnownLink( $ns[$result->ns_dis].':'.$result->title_dis ,'');
		
		return "$from $edit => $to";
	}
}

/**
 * Constructor
 */
function wfSpecialDisambiguations() {
	list( $limit, $offset ) = wfCheckLimits();
	
	$sd = new DisambiguationsPage();
	
	return $sd->doQuery( $offset, $limit );

}
?>