simple.php

来自「php 开发的内容管理系统」· PHP 代码 · 共 71 行

PHP
71
字号
<?php/** * See skin.txt * * @todo document * @package MediaWiki * @subpackage Skins */if( !defined( 'MEDIAWIKI' ) )	die( -1 );/** */require_once('MonoBook.php');/** * @todo document * @package MediaWiki * @subpackage Skins */class SkinSimple extends SkinTemplate {	function initPage( &$out ) {		SkinTemplate::initPage( $out );		$this->skinname  = 'simple';		$this->stylename = 'simple';		$this->template  = 'MonoBookTemplate';	}	function reallyDoGetUserStyles() {		global $wgUser;		$s = '';		if (($undopt = $wgUser->getOption("underline")) != 2) {			$underline = $undopt ? 'underline' : 'none';			$s .= "a { text-decoration: $underline; }\n";		}		if ($wgUser->getOption('highlightbroken')) {			$s .= "a.new, #quickbar a.new { text-decoration: line-through; }\n";		} else {			$s .= <<<ENDa.new, #quickbar a.new,a.stub, #quickbar a.stub {	color: inherit;	text-decoration: inherit;}a.new:after, #quickbar a.new:after {	content: "?";	color: #CC2200;	text-decoration: $underline;}a.stub:after, #quickbar a.stub:after {	content: "!";	color: #772233;	text-decoration: $underline;}END;		}		if ($wgUser->getOption('justify')) {			$s .= "#article, #bodyContent { text-align: justify; }\n";		}		if (!$wgUser->getOption('showtoc')) {			$s .= "#toc { display: none; }\n";		}		if (!$wgUser->getOption('editsection')) {			$s .= ".editsection { display: none; }\n";		}		return $s;	}}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?