Jump to content

MediaWiki:Gadget-purgetab.js: Difference between revisions

From wikiNonStop
Fix the text label of the purge tab
 
m 1 revision imported: Initial setup
 
(No difference)

Latest revision as of 07:43, 25 December 2024

/**
 * Add "Purge" content action link.
 *
 * Dependencies: mediawiki.util
 *
 * @source www.mediawiki.org/wiki/Snippets/Purge_action
 * @revision 2014-05-14
 */
$( function () {
    if ( !$( '#ca-purge' ).length && mw.config.get( 'wgIsArticle' ) ) {
        mw.util.addPortletLink(
            'p-cactions',
            mw.util.wikiScript() + '?' + $.param({ title: mw.config.get( 'wgPageName' ), action: 'purge' }),
            mw.config.get( 'skin' ) === 'monobook' ? '*' : 'Purge',
            'ca-purge',
            'Purge the server cache of this page',
            '*'
        );
    }
} );