X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fskins%2FSkinApi.php;h=2fef2209c830ca3b6b7ad2d32c071eb0494e8a06;hb=734ca2b4d2a1246fb0ea1e54b861ab423ab5e257;hp=064c076b915d13a2fee13015dd2c0f241aa9ecbf;hpb=d785664ff326c545b3bf10e48b8b39f8b2fb5402;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/skins/SkinApi.php b/includes/skins/SkinApi.php index 064c076b91..2fef2209c8 100644 --- a/includes/skins/SkinApi.php +++ b/includes/skins/SkinApi.php @@ -38,4 +38,34 @@ class SkinApi extends SkinTemplate { parent::setupSkinUserCss( $out ); $out->addModuleStyles( 'mediawiki.skinning.interface' ); } + + // Skip work and hooks for stuff we don't use + + function buildSidebar() { + return array(); + } + + function getNewtalks() { + return ''; + } + + function getSiteNotice() { + return ''; + } + + public function getLanguages() { + return array(); + } + + protected function buildPersonalUrls() { + return array(); + } + + protected function buildContentNavigationUrls() { + return array(); + } + + protected function buildNavUrls() { + return array(); + } }