Difference between revisions of "Extension:Wikiskin.php"
(actions and personal tools) |
m |
||
Line 115: | Line 115: | ||
<?php if($this->data['body_onload' ]) { ?>onload="<?php $this->text('body_onload') ?>"<?php } ?> | <?php if($this->data['body_onload' ]) { ?>onload="<?php $this->text('body_onload') ?>"<?php } ?> | ||
class="<?php $this->text('nsclass') ?> <?php $this->text('dir') ?>"> | class="<?php $this->text('nsclass') ?> <?php $this->text('dir') ?>"> | ||
+ | |||
+ | <div id="globalWrapper"> | ||
<a name="top" id="top"></a> | <a name="top" id="top"></a> | ||
− | |||
<?php | <?php | ||
# Build list of special fields and their content | # Build list of special fields and their content | ||
Line 172: | Line 173: | ||
echo preg_replace('/\\({4}WikiSkin:(.+?)\\){4}/ie','$replace["$1"]',$content->getText()); | echo preg_replace('/\\({4}WikiSkin:(.+?)\\){4}/ie','$replace["$1"]',$content->getText()); | ||
?> | ?> | ||
− | + | <script type="text/javascript"> if (window.runOnloadHook) runOnloadHook();</script> | |
+ | </div> | ||
<?php $this->html('reporttime') ?> | <?php $this->html('reporttime') ?> | ||
</body></html> | </body></html> |
Revision as of 10:53, 5 April 2007
<?
- Extension:Livelets
- - Uses a wikitext article for the skin instead of a PHP file. Special items like search box and login link use magic words
- - Version 0.1 (2007-04-05)
- - See http://www.mediawiki.org/wiki/Extension:WikiSkin for installation and usage details
- - Licenced under LGPL (http://www.gnu.org/copyleft/lesser.html)
- - Author: http://www.organicdesign.co.nz/nad
$wgWikiSkin = isset($_REQUEST['skin']) ? $_REQUEST['skin'] : 'WikiSkin';
$wgWikiSkinMagic = array('CURRENTUSER','LOGO','TEXT','SEARCH','PERSONAL','ACTIONS','SITENOTICE','SUBTITLE','INFO','CATLINKS','FOOTER'); $wgExtensionFunctions[] = 'wfSetupWikiSkin'; $wgHooks['MagicWordMagicWords'][] = 'wfWikiSkinMagicWord'; $wgHooks['MagicWordwgVariableIDs'][] = 'wfWikiSkinMagicWordID'; $wgHooks['LanguageGetMagic'][] = 'wfWikiSkinWordLang'; $wgHooks['ParserGetVariableValueSwitch'][] = 'wfGetWikiSkinMagicWord';
function wfWikiSkinMagicWord(&$magicWords) { global $wgWikiSkinMagic; foreach($wgWikiSkinMagic as $magic) $magicWords[] = "MAG_$magic"; return true; }
function wfWikiSkinMagicWordID(&$magicWords) { global $wgWikiSkinMagic; foreach($wgWikiSkinMagic as $magic) $magicWords[] = constant("MAG_$magic"); return true; }
function wfWikiSkinWordLang(&$magicWords, $langCode = 0) { global $wgWikiSkinMagic; foreach($wgWikiSkinMagic as $magic) $magicWords[constant("MAG_$magic")] = array(0,$magic); return true; }
function wfGetWikiSkinMagicWord(&$this,&$cache,&$index,&$ret) { global $wgMagicWordsEn; switch ($index) {
case MAG_CURRENTUSER: $ret = $GLOBALS['wgUser']->mName; break;
# These ones are all replaced by a token to be filled by skin when rendering page case MAG_LOGO: case MAG_TEXT: case MAG_SEARCH: case MAG_PERSONAL: case MAG_ACTIONS: case MAG_SITENOTICE: case MAG_SUBTITLE: case MAG_INFO: case MAG_CATLINKS: case MAG_FOOTER: $magic = $wgMagicWordsEn[$index]; $ret = "((((WikiSkin:$magic))))"; break; } return true; }
- Create skin class based on monobook which parses the skin article and embeds the content
class SkinWikiSkin extends SkinTemplate {
function initPage(&$out) { SkinTemplate::initPage($out); $this->skinname = 'wikiskin'; $this->stylename = 'wikiskin'; $this->template = 'WikiSkinTemplate'; }
}
class WikiSkinTemplate extends QuickTemplate { function execute() {
# Build the HTML, HEAD and BODY elements and send to output wfSuppressWarnings(); ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> text('lang') ?>" lang="text('lang') ?>" dir="text('dir') ?>"> html('headlinks') ?>
'.$this->msg('tagline').'
- ';
foreach ($this->data['content_actions'] as $key => $tab) $replace['ACTIONS'] .=
'
- '.htmlspecialchars($tab['text']).' '; $replace['ACTIONS'] .= '
- ';
foreach ($this->data['personal_urls'] as $key => $item) $replace['PERSONAL'] .=
'
- '.htmlspecialchars($item['text']).' '; $replace['PERSONAL'] .= '
html('reporttime') ?> <?php wfRestoreWarnings();
}
}
- Make the new skin current
function wfSetupWikiSkin() { global $wgUser; $wgUser->setOption('skin','WikiSkin'); $wgUser->mSkin =& new SkinWikiSkin; }
?>