diff --git a/skins/UabVector.php b/skins/UabVector.php index b678b7e31731e5c4aafff34bc5357fe5bc3d9641..8dcf5f550bb54cbb6e0eea2c1c7994aa473f84c6 100644 --- a/skins/UabVector.php +++ b/skins/UabVector.php @@ -12,14 +12,14 @@ if( !defined( 'MEDIAWIKI' ) ) die( -1 ); /** - * SkinTemplate class for Vector skin + * SkinTemplate class for UabVector skin * @ingroup Skins */ -class SkinVector extends SkinTemplate { +class SkinUabVector extends SkinTemplate { /* Functions */ - var $skinname = 'vector', $stylename = 'vector', - $template = 'VectorTemplate', $useHeadElement = true; + var $skinname = 'uabvector', $stylename = 'uabvector', + $template = 'UabVectorTemplate', $useHeadElement = true; /** * Initializes output page and sets up skin-specific parameters @@ -31,21 +31,21 @@ class SkinVector extends SkinTemplate { parent::initPage( $out ); // Append skin-specific styles - $out->addStyle( 'vector/main-rtl.css', 'screen', '', 'rtl' ); - $out->addStyle( 'vector/main-ltr.css', 'screen', '', 'ltr' ); + $out->addStyle( 'uabvector/main-rtl.css', 'screen', '', 'rtl' ); + $out->addStyle( 'uabvector/main-ltr.css', 'screen', '', 'ltr' ); // Append CSS which includes IE only behavior fixes for hover support - // this is better than including this in a CSS fille since it doesn't // wait for the CSS file to load before fetching the HTC file. $out->addScript( '<!--[if lt IE 7]><style type="text/css">body{behavior:url("' . $wgStylePath . - '/vector/csshover.htc")}</style><![endif]-->' + '/uabvector/csshover.htc")}</style><![endif]-->' ); // Add extra stylesheets // THIS IS ONLY USEFUL FOR EXPERIMENTING WITH DIFFERNT STYLE OPTIONS! THIS WILL BE REMOVED IN THE NEAR FUTURE. if ( is_array( $wgVectorExtraStyles ) ) { foreach ( $wgVectorExtraStyles as $style ) { - $out->addStyle( 'vector/' . $style, 'screen' ); + $out->addStyle( 'uabvector/' . $style, 'screen' ); } } } @@ -338,7 +338,7 @@ class SkinVector extends SkinTemplate { * QuickTemplate class for Vector skin * @ingroup Skins */ -class VectorTemplate extends QuickTemplate { +class UabVectorTemplate extends QuickTemplate { /* Members */