Extension:CSS

From Organic Design wiki
Revision as of 21:27, 30 December 2007 by Nad (talk | contribs) (add patch by sandro - see MW:Extension talk:CSS)

<?php

  1. Extension:CSS
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('CSS_VERSION','1.0.2, 2007-12-31');

$wgCSSMagic = "css"; $wgExtensionFunctions[] = 'wfSetupCSS'; $wgHooks['LanguageGetMagic'][] = 'wfCSSLanguageGetMagic';

$wgExtensionCredits['parserhook'][] = array( 'name' => 'CSS', 'author' => 'User:Nad', 'description' => 'A parser-function for adding CSS\'s to articles', 'url' => 'http://www.mediawiki.org/wiki/Extension:CSS', 'version' => CSS_VERSION );

class CSS {

# Constructor function CSS() { global $wgParser,$wgCSSMagic; $wgParser->setFunctionHook($wgCSSMagic,array($this,'magicCss')); }

# Expand the css-magic function magicCss(&$parser,$css) { global $wgOut; $parser->mOutput->mCacheTime = -1; $url = Title::newFromText($css)->getLocalURL('action=raw&ctype=text/css'); $url = str_replace("&", "&", $url); $wgOut->addScript("<link rel=\"stylesheet\" type=\"text/css\" href=\"$url\" />"); return ; }

# Needed in some versions to prevent Special:Version from breaking function __toString() { return 'CSS'; }

	}

  1. Called from $wgExtensionFunctions array when initialising extensions

function wfSetupCSS() { global $wgCSS; $wgCSS = new CSS(); }

  1. Needed in MediaWiki >1.8.0 for magic word hooks to work properly

function wfCSSLanguageGetMagic(&$magicWords,$langCode = 0) { global $wgCSSMagic; $magicWords[$wgCSSMagic] = array(0,$wgCSSMagic); return true; } ?>