skinname = 'simple'; $this->stylename = 'simple'; $this->template = 'MonoBookTemplate'; } function setupSkinUserCss( OutputPage $out ){ $out->addStyle( 'simple/main.css', 'screen' ); $out->addStyle( 'simple/rtl.css', '', '', 'rtl' ); } function reallyGenerateUserStylesheet() { 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 .= <<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; } }