blob: e238b4ffce3e0dcba84f9ccb08792883e6102fbc (
plain)
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
|
<?php
class CiteThisPageHooks {
/**
* @param SkinTemplate $skintemplate
* @param $nav_urls
* @param $oldid
* @param $revid
* @return bool
*/
public static function onSkinTemplateBuildNavUrlsNav_urlsAfterPermalink( &$skintemplate, &$nav_urls, &$oldid, &$revid ) {
// check whether we’re in the right namespace, the $revid has the correct type and is not empty
// (which would mean that the current page doesn’t exist)
$title = $skintemplate->getTitle();
if ( $title->isContentPage() && $revid !== 0 && !empty( $revid ) )
$nav_urls['citeThisPage'] = array(
'args' => array( 'page' => $title->getPrefixedDBkey(), 'id' => $revid )
);
return true;
}
/**
* @param Skin $skin
* @return bool
*/
public static function onSkinTemplateToolboxEnd( &$skin ) {
if ( isset( $skin->data['nav_urls']['citeThisPage'] ) ) {
echo Html::rawElement(
'li',
array( 'id' => 't-cite' ),
Linker::link(
SpecialPage::getTitleFor( 'CiteThisPage' ),
wfMessage( 'citethispage-link' )->escaped(),
# Used message keys: 'tooltip-citethispage', 'accesskey-citethispage'
Linker::tooltipAndAccessKeyAttribs( 'citethispage' ),
$skin->data['nav_urls']['citeThisPage']['args']
)
);
}
return true;
}
}
|