Jump to content

MediaWiki:Gadget-purgetab.js: Difference between revisions

From The Austrian Economics Wiki, the global repository of classical-liberal thought
m update deprecated function wikiGetLink
 
m 1 revision
 
(No difference)

Latest revision as of 04:20, 17 December 2013

/**
 * Action link: Purge (Action menu)
 *
 * @source: http://www.mediawiki.org/wiki/Snippets/Purge_action
 * @rev: 5
 */
$( function() {
    if ( !$( '#ca-purge' ).length && mw.config.get( 'wgIsArticle' ) ) {
        mw.util.addPortletLink(
            'p-cactions',
            mw.util.getUrl( mw.config.get( 'wgPageName' ), { action: 'purge' } ),
            mw.config.get( 'skin' ) == 'vector' ? 'Purge' : '*',
            'ca-purge',
            'Purge the server cache of this page',
            '*'
        );
    }
});