Extension:NoViewSource.php

From Organic Design wiki
Revision as of 05:55, 13 December 2007 by Nad (talk | contribs) (notes)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<?php

  1. Extension:NoViewSource
Info.svg These are the MediaWiki extensions we're using and/or developing. Please refer to the information on the mediawiki.org wiki for installation and usage details. Extensions here which have no corresponding mediawiki article are either not ready for use or have been superseded. You can also browse our extension code in our local Subversion repository or our GitHub mirror.

Template:Php

  1. - Licenced under LGPL (http://www.gnu.org/copyleft/lesser.html)
  2. - Author: User:NadCategory:Extensions created with Template:Extension

if (!defined('MEDIAWIKI')) die('Not an entry point.');

define('NOVIEWSOURCE_VERSION','1.0.0, 2007-12-13');

$wgExtensionFunctions[] = 'wfSetupNoViewSource'; $wgHooks['LanguageGetMagic'][] = 'wfNoViewSourceLanguageGetMagic'; $wgHooks['SkinTemplateTabs'][] = 'wfNoViewSourceUpdateActions'; $wgExtensionCredits['other'][] = array( 'name' => 'NoViewSource', 'author' => 'User:Nad', 'description' => 'Replaces the "view source" action with "edit" which links to login page.', 'url' => 'http://www.organicdesign.co.nz/Extension:NoViewSource.php', 'version' => NOVIEWSOURCE_VERSION );

  1. EditPage.php/edit() changed after 1.8
  1. OutputPage.php/readOnlyPage() renders source
  1. SkinTemplate.php/buildContentActionUrls()

function wfNoViewSourceUpdateActions(&$skin,&$actions) { global $wgTitle,$wgXmlOutputTitle; $url = Title::makeTitle(NS_SPECIAL,$wgXmlOutputTitle); $url = $url->getLocalUrl().'/'.$wgTitle->getPrefixedText(); if (isset($actions['viewsource'])) { $actions['viewsource']['text'] = wfMsg('edit'), $actions['viewsource']['href'] = $this->mTitle->getLocalUrl( $this->editUrlOptions() ) return true; }