Jump to content

Austrian Economics Wiki:Vector.php: Difference between revisions

From The Austrian Economics Wiki, the global repository of classical-liberal thought
Created page with "This is the customized Vector skin that Mises Wiki uses. <source lang="php"> <?php /** * Vector - Modern version of MonoBook with fresh look and many us..."
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
This is the customized [[mw:Manual:Vector|Vector]] skin that Mises Wiki uses.
<source lang="php">
<source lang="php">
<?php
<?php
Line 13: Line 11:


if( !defined( 'MEDIAWIKI' ) ) {
if( !defined( 'MEDIAWIKI' ) ) {
die( -1 );
        die( -1 );
}
}
// This code is necessary to get it to produce a printable version that
// doesn't have the Mises.org header taking up half the first page.
if ( isset ( $_REQUEST[ 'printable' ] ) ) {
                // Vector.printable.php is simply the Vector.php from MW v1.19.2.
                require_once ( "Vector.printable.php" );
} else {


/**
/**
Line 22: Line 27:
class SkinVector extends SkinTemplate {
class SkinVector extends SkinTemplate {


var $skinname = 'vector', $stylename = 'vector',
        var $skinname = 'vector', $stylename = 'vector',
$template = 'VectorTemplate', $useHeadElement = true;
                $template = 'VectorTemplate', $useHeadElement = true;


/**
        /**
* Initializes output page and sets up skin-specific parameters
        * Initializes output page and sets up skin-specific parameters
* @param $out OutputPage object to initialize
        * @param $out OutputPage object to initialize
*/
        */
public function initPage( OutputPage $out ) {
      public function initPage( OutputPage $out ) {
global $wgLocalStylePath;
                global $wgLocalStylePath;


parent::initPage( $out );
              parent::initPage( $out );


// Append CSS which includes IE only behavior fixes for hover support -
                // 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
                // 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.
                // wait for the CSS file to load before fetching the HTC file.
$min = $this->getRequest()->getFuzzyBool( 'debug' ) ? '' : '.min';
              $min = $this->getRequest()->getFuzzyBool( 'debug' ) ? '' : '.min';
$out->addHeadItem( 'csshover',
                $out->addHeadItem( 'csshover',
'<!--[if lt IE 7]><style type="text/css">body{behavior:url("' .
                      '<!--[if lt IE 7]><style type="text/css">body{behavior:url("' .
htmlspecialchars( $wgLocalStylePath ) .
                                htmlspecialchars( $wgLocalStylePath ) .
"/{$this->stylename}/csshover{$min}.htc\")}</style><![endif]-->"
                                "/{$this->stylename}/csshover{$min}.htc\")}</style><![endif]-->"
);
                );


$out->addModuleScripts( 'skins.vector' );
              $out->addModuleScripts( 'skins.vector' );
}
        }


/**
        /**
* Load skin and user CSS files in the correct order
        * Load skin and user CSS files in the correct order
* fixes bug 22916
        * fixes bug 22916
* @param $out OutputPage object
        * @param $out OutputPage object
*/
        */
function setupSkinUserCss( OutputPage $out ){
      function setupSkinUserCss( OutputPage $out ){
parent::setupSkinUserCss( $out );
                parent::setupSkinUserCss( $out );
$out->addModuleStyles( 'skins.vector' );
                $out->addModuleStyles( 'skins.vector' );
       $out->addStyle( 'misesskin/main.css', 'screen');
       $out->addStyle( 'misesskin/main.css', 'screen');
}
        }
}
}


Line 65: Line 70:
class VectorTemplate extends BaseTemplate {
class VectorTemplate extends BaseTemplate {


/* Functions */
        /* Functions */


/**
        /**
* Outputs the entire contents of the (X)HTML page
        * Outputs the entire contents of the (X)HTML page
*/
        */
public function execute() {
        public function execute() {
global $wgVectorUseIconWatch;
                global $wgVectorUseIconWatch;


// Build additional attributes for navigation urls
              // Build additional attributes for navigation urls
$nav = $this->data['content_navigation'];
                $nav = $this->data['content_navigation'];


if ( $wgVectorUseIconWatch ) {
                if ( $wgVectorUseIconWatch ) {
$mode = $this->getSkin()->getTitle()->userIsWatching() ? 'unwatch' : 'watch';
                        $mode = $this->getSkin()->getTitle()->userIsWatching() ? 'unwatch' : 'watch';
if ( isset( $nav['actions'][$mode] ) ) {
                        if ( isset( $nav['actions'][$mode] ) ) {
$nav['views'][$mode] = $nav['actions'][$mode];
                                $nav['views'][$mode] = $nav['actions'][$mode];
$nav['views'][$mode]['class'] = rtrim( 'icon ' . $nav['views'][$mode]['class'], ' ' );
                                $nav['views'][$mode]['class'] = rtrim( 'icon ' . $nav['views'][$mode]['class'], ' ' );
$nav['views'][$mode]['primary'] = true;
                                $nav['views'][$mode]['primary'] = true;
unset( $nav['actions'][$mode] );
                                unset( $nav['actions'][$mode] );
}
                        }
}
                }


$xmlID = '';
                $xmlID = '';
foreach ( $nav as $section => $links ) {
                foreach ( $nav as $section => $links ) {
foreach ( $links as $key => $link ) {
                        foreach ( $links as $key => $link ) {
if ( $section == 'views' && !( isset( $link['primary'] ) && $link['primary'] ) ) {
                                if ( $section == 'views' && !( isset( $link['primary'] ) && $link['primary'] ) ) {
$link['class'] = rtrim( 'collapsible ' . $link['class'], ' ' );
                                      $link['class'] = rtrim( 'collapsible ' . $link['class'], ' ' );
}
                                }


$xmlID = isset( $link['id'] ) ? $link['id'] : 'ca-' . $xmlID;
                                $xmlID = isset( $link['id'] ) ? $link['id'] : 'ca-' . $xmlID;
$nav[$section][$key]['attributes'] =
                              $nav[$section][$key]['attributes'] =
' id="' . Sanitizer::escapeId( $xmlID ) . '"';
                                      ' id="' . Sanitizer::escapeId( $xmlID ) . '"';
if ( $link['class'] ) {
                              if ( $link['class'] ) {
$nav[$section][$key]['attributes'] .=
                                        $nav[$section][$key]['attributes'] .=
' class="' . htmlspecialchars( $link['class'] ) . '"';
                                                ' class="' . htmlspecialchars( $link['class'] ) . '"';
unset( $nav[$section][$key]['class'] );
                                        unset( $nav[$section][$key]['class'] );
}
                                }
if ( isset( $link['tooltiponly'] ) && $link['tooltiponly'] ) {
                              if ( isset( $link['tooltiponly'] ) && $link['tooltiponly'] ) {
$nav[$section][$key]['key'] =
                                      $nav[$section][$key]['key'] =
Linker::tooltip( $xmlID );
                                                Linker::tooltip( $xmlID );
} else {
                              } else {
$nav[$section][$key]['key'] =
                                      $nav[$section][$key]['key'] =
Xml::expandAttributes( Linker::tooltipAndAccesskeyAttribs( $xmlID ) );
                                              Xml::expandAttributes( Linker::tooltipAndAccesskeyAttribs( $xmlID ) );
}
                              }
}
                        }
}
                }
$this->data['namespace_urls'] = $nav['namespaces'];
                $this->data['namespace_urls'] = $nav['namespaces'];
$this->data['view_urls'] = $nav['views'];
                $this->data['view_urls'] = $nav['views'];
$this->data['action_urls'] = $nav['actions'];
              $this->data['action_urls'] = $nav['actions'];
$this->data['variant_urls'] = $nav['variants'];
                $this->data['variant_urls'] = $nav['variants'];


// Reverse horizontally rendered navigation elements
                // Reverse horizontally rendered navigation elements
if ( $this->data['rtl'] ) {
                if ( $this->data['rtl'] ) {
$this->data['view_urls'] =
                        $this->data['view_urls'] =
array_reverse( $this->data['view_urls'] );
                                array_reverse( $this->data['view_urls'] );
$this->data['namespace_urls'] =
                        $this->data['namespace_urls'] =
array_reverse( $this->data['namespace_urls'] );
                                array_reverse( $this->data['namespace_urls'] );
$this->data['personal_urls'] =
                        $this->data['personal_urls'] =
array_reverse( $this->data['personal_urls'] );
                                array_reverse( $this->data['personal_urls'] );
}
                }
// Output HTML Page
                // Output HTML Page
$this->html( 'headelement' );
                $this->html( 'headelement' );
?>
?>


Line 131: Line 136:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js" type="text/javascript"></script>
<script>$(document).ready(function(){
<script>$(document).ready(function(){
$('#footer').wrap('<div id="footer-wrapper">');
        $('#footer').wrap('<div id="footer-wrapper">');
$('#footer-icons').after('<div id="footer-contact"><h1></h1><p>518 West Magnolia Avenue • Auburn, Alabama 36832-4501 • Phone: 334.321.2100 • Fax: 334.321.2119</br><a href="http://mises.org/contact.aspx">Contact Us:</a> <a title="Comments and Questions about the Mises Institute" href="mailto:contact@mises.org?subject=Comment+or+Question+about+the Mises+Institute">contact@mises.org</a> • <a title="Comments about the Mises.org web site" href="mailto:webmaster@mises.org?subject=Comments+about+the+Mises.org+web+site">webmaster@mises.org</a> • <a href="http://mises.org/sitemap.aspx" rel="directory">Site Map</a> • <a href="http://groups.google.com/group/misesdev">Open Source</a>');
        $('#footer-icons').after('<div id="footer-contact"><h1></h1><p>518 West Magnolia Avenue Auburn, Alabama 36832-4501 Phone: 334.321.2100 Fax: 334.321.2119</br><a href="http://mises.org/contact.aspx">Contact Us:</a> <a title="Comm$
  });</script>
  });</script>
<!-- BEGIN Header HTML -->
<!-- BEGIN Header HTML -->
<div id="header-wrapper">
<div id="header-wrapper">
<div id="header-content">
        <div id="header-content">
<div id="header-logo">
                <div id="header-logo">
<a href="/">
                        <a href="/">
<img src="http://wiki.mises.org/mediawiki/skins/misesskin/images/shield.png">
                              <img src="http://wiki.mises.org/mediawiki/skins/misesskin/images/shield.png">
</a>
                        </a>
</div>
                </div>
<div id="header-text-block">
                <div id="header-text-block">
<h1>Ludwig von Mises Institute</h1>
                        <h1>Ludwig von Mises Institute</h1>
</div>
                </div>
</div>
        </div>
</div>
</div>
<div id="nav-wrapper">
<div id="nav-wrapper">
<div id="nav-content">
        <div id="nav-content">
<div id="nav-left">
                <div id="nav-left">
<ul>
                        <ul>
<li><a href="/">Mises.org</a></li>
                                <li><a href="http://mises.org">Mises.org</a></li>
<li><a href="http://mises.org/daily/">Daily</a></li>
                              <li><a href="http://mises.org/daily/">Daily</a></li>
<li><a href="http://mises.org/about">About</a></li>
                              <li><a href="http://mises.org/about">About</a></li>
<li><a href="http://bastiat.mises.org/">Blog</a></li>
                              <li><a href="http://bastiat.mises.org/">Blog</a></li>
<li><a href="http://mises.org/Literature">Literature</a></li>
                                <li><a href="http://mises.org/Literature">Literature</a></li>
<li><a href="http://mises.org/media">Audio / Video</a></li>
                                <li><a href="http://mises.org/media">Audio / Video</a></li>
<li><a href="http://mises.org/events/">Events</a></li>
                                <li><a href="http://mises.org/events/">Events</a></li>
<li><a href="http://mises.org/donate.aspx">Donate</a></li>
                                <li><a href="http://mises.org/donate.aspx">Donate</a></li>
</ul>
                        </ul>
</div>
                </div>
<div id="nav-right">
                <div id="nav-right">
<ul>
                        <ul>
<li><a href="http://mises.org/store/">Store</a></li>
                                <li><a href="http://mises.org/store/">Store</a></li>
<li><a href="http://academy.mises.org">Academy</a></li>
                                <li><a href="http://academy.mises.org">Academy</a></li>
<li><a href="http://mises.org/community/">Community</a></li>
                                <!-- <li><a href="http://mises.org/community/">Community</a></li> -->
<li><a href="http://wiki.mises.org">Wiki</a></li>
                                <li><a href="http://wiki.mises.org">Wiki</a></li>
</ul>
                        </ul>
</div>
                </div>
</div>
        </div>
</div><!-- END Header HTML -->
</div><!-- END Header HTML -->






<div id="mw-page-base" class="noprint"></div>
                <div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
                <div id="mw-head-base" class="noprint"></div>
<!-- content -->
                <!-- content -->
<div id="content" class="mw-body">
                <div id="content" class="mw-body">
<a id="top"></a>
                      <a id="top"></a>
<div id="mw-js-message" style="display:none;"<?php $this->html( 'userlangattributes' ) ?>></div>
                        <div id="mw-js-message" style="display:none;"<?php $this->html( 'userlangattributes' ) ?>></div>
<?php if ( $this->data['sitenotice'] ): ?>
                        <?php if ( $this->data['sitenotice'] ): ?>
<!-- sitenotice -->
                        <!-- sitenotice -->
<div id="siteNotice"><?php $this->html( 'sitenotice' ) ?></div>
                        <div id="siteNotice"><?php $this->html( 'sitenotice' ) ?></div>
<!-- /sitenotice -->
                        <!-- /sitenotice -->
<?php endif; ?>
                        <?php endif; ?>
<!-- firstHeading -->
                        <!-- firstHeading -->
<h1 id="firstHeading" class="firstHeading">
                      <h1 id="firstHeading" class="firstHeading">
<span dir="auto"><?php $this->html( 'title' ) ?></span>
                                <span dir="auto"><?php $this->html( 'title' ) ?></span>
</h1>
                        </h1>
<!-- /firstHeading -->
                      <!-- /firstHeading -->
<!-- bodyContent -->
                      <!-- bodyContent -->
<div id="bodyContent">
                      <div id="bodyContent">
<?php if ( $this->data['isarticle'] ): ?>
                              <?php if ( $this->data['isarticle'] ): ?>
<!-- tagline -->
                              <!-- tagline -->
<div id="siteSub"><?php $this->msg( 'tagline' ) ?></div>
                                <div id="siteSub"><?php $this->msg( 'tagline' ) ?></div>
<!-- /tagline -->
                              <!-- /tagline -->
<?php endif; ?>
                                <?php endif; ?>
<!-- subtitle -->
                              <!-- subtitle -->
<div id="contentSub"<?php $this->html( 'userlangattributes' ) ?>><?php $this->html( 'subtitle' ) ?></div>
                              <div id="contentSub"<?php $this->html( 'userlangattributes' ) ?>><?php $this->html( 'subtitle' ) ?></div>
<!-- /subtitle -->
                              <!-- /subtitle -->
<?php if ( $this->data['undelete'] ): ?>
                                <?php if ( $this->data['undelete'] ): ?>
<!-- undelete -->
                                <!-- undelete -->
<div id="contentSub2"><?php $this->html( 'undelete' ) ?></div>
                                <div id="contentSub2"><?php $this->html( 'undelete' ) ?></div>
<!-- /undelete -->
                                <!-- /undelete -->
<?php endif; ?>
                              <?php endif; ?>
<?php if( $this->data['newtalk'] ): ?>
                              <?php if( $this->data['newtalk'] ): ?>
<!-- newtalk -->
                                <!-- newtalk -->
<div class="usermessage"><?php $this->html( 'newtalk' )  ?></div>
                              <div class="usermessage"><?php $this->html( 'newtalk' )  ?></div>
<!-- /newtalk -->
                                <!-- /newtalk -->
<?php endif; ?>
                                <?php endif; ?>
<?php if ( $this->data['showjumplinks'] ): ?>
                                <?php if ( $this->data['showjumplinks'] ): ?>
<!-- jumpto -->
                                <!-- jumpto -->
<div id="jump-to-nav" class="mw-jump">
                              <div id="jump-to-nav" class="mw-jump">
<?php $this->msg( 'jumpto' ) ?> <a href="#mw-head"><?php $this->msg( 'jumptonavigation' ) ?></a>,
                                      <?php $this->msg( 'jumpto' ) ?> <a href="#mw-head"><?php $this->msg( 'jumptonavigation' ) ?></a>,
<a href="#p-search"><?php $this->msg( 'jumptosearch' ) ?></a>
                                      <a href="#p-search"><?php $this->msg( 'jumptosearch' ) ?></a>
</div>
                              </div>
<!-- /jumpto -->
                                <!-- /jumpto -->
<?php endif; ?>
                                <?php endif; ?>
<!-- bodycontent -->
                                <!-- bodycontent -->
<?php $this->html( 'bodycontent' ) ?>
                                <?php $this->html( 'bodycontent' ) ?>
<!-- /bodycontent -->
                                <!-- /bodycontent -->
<?php if ( $this->data['printfooter'] ): ?>
                              <?php if ( $this->data['printfooter'] ): ?>
<!-- printfooter -->
                                <!-- printfooter -->
<div class="printfooter">
                                <div class="printfooter">
<?php $this->html( 'printfooter' ); ?>
                                <?php $this->html( 'printfooter' ); ?>
</div>
                                </div>
<!-- /printfooter -->
                                <!-- /printfooter -->
<?php endif; ?>
                                <?php endif; ?>
<?php if ( $this->data['catlinks'] ): ?>
                                <?php if ( $this->data['catlinks'] ): ?>
<!-- catlinks -->
                                <!-- catlinks -->
<?php $this->html( 'catlinks' ); ?>
                                <?php $this->html( 'catlinks' ); ?>
<!-- /catlinks -->
                                <!-- /catlinks -->
<?php endif; ?>
                                <?php endif; ?>
<?php if ( $this->data['dataAfterContent'] ): ?>
                              <?php if ( $this->data['dataAfterContent'] ): ?>
<!-- dataAfterContent -->
                                <!-- dataAfterContent -->
<?php $this->html( 'dataAfterContent' ); ?>
                                <?php $this->html( 'dataAfterContent' ); ?>
<!-- /dataAfterContent -->
                                <!-- /dataAfterContent -->
<?php endif; ?>
                              <?php endif; ?>
<div class="visualClear"></div>
                              <div class="visualClear"></div>
<!-- debughtml -->
                                <!-- debughtml -->
<?php $this->html( 'debughtml' ); ?>
                              <?php $this->html( 'debughtml' ); ?>
<!-- /debughtml -->
                                <!-- /debughtml -->
</div>
                        </div>
<!-- /bodyContent -->
                        <!-- /bodyContent -->
</div>
                </div>
<!-- /content -->
                <!-- /content -->
<!-- header -->
                <!-- header -->
<div id="mw-head" class="noprint">
                <div id="mw-head" class="noprint">
<?php $this->renderNavigation( 'PERSONAL' ); ?>
                        <?php $this->renderNavigation( 'PERSONAL' ); ?>
<div id="left-navigation">
                        <div id="left-navigation">
<?php $this->renderNavigation( array( 'NAMESPACES', 'VARIANTS' ) ); ?>
                              <?php $this->renderNavigation( array( 'NAMESPACES', 'VARIANTS' ) ); ?>
</div>
                        </div>
<div id="right-navigation">
                        <div id="right-navigation">
<?php $this->renderNavigation( array( 'VIEWS', 'ACTIONS', 'SEARCH' ) ); ?>
                                <?php $this->renderNavigation( array( 'VIEWS', 'ACTIONS', 'SEARCH' ) ); ?>
</div>
                        </div>
</div>
                </div>
<!-- /header -->
                <!-- /header -->
<!-- panel -->
                <!-- panel -->
<div id="mw-panel" class="noprint">
                        <div id="mw-panel" class="noprint">
<!-- logo -->
                                <!-- logo -->
<div id="p-logo"><a style="background-image: url(<?php $this->text( 'logopath' ) ?>);" href="<?php echo htmlspecialchars( $this->data['nav_urls']['mainpage']['href'] ) ?>" <?php echo Xml::expandAttributes( Linker::tooltipAndAccesskeyAttribs( 'p-logo' ) ) ?>></a></div>
                                      <div id="p-logo"><a style="background-image: url(<?php $this->text( 'logopath' ) ?>);" href="<?php echo htmlspecialchars( $this->data['nav_urls']['mainpage']['href'] ) ?>" <?php echo Xml::expandAttribu$
<!-- /logo -->
                                <!-- /logo -->
<?php $this->renderPortals( $this->data['sidebar'] ); ?>
                                <?php $this->renderPortals( $this->data['sidebar'] ); ?>
</div>
                        </div>
<!-- /panel -->
                <!-- /panel -->
<!-- footer -->
                <!-- footer -->
<div id="footer"<?php $this->html( 'userlangattributes' ) ?>>
                <div id="footer"<?php $this->html( 'userlangattributes' ) ?>>
<?php foreach( $this->getFooterLinks() as $category => $links ): ?>
                        <?php foreach( $this->getFooterLinks() as $category => $links ): ?>
<ul id="footer-<?php echo $category ?>">
                                <ul id="footer-<?php echo $category ?>">
<?php foreach( $links as $link ): ?>
                                        <?php foreach( $links as $link ): ?>
<li id="footer-<?php echo $category ?>-<?php echo $link ?>"><?php $this->html( $link ) ?></li>
                                              <li id="footer-<?php echo $category ?>-<?php echo $link ?>"><?php $this->html( $link ) ?></li>
<?php endforeach; ?>
                                        <?php endforeach; ?>
</ul>
                                </ul>
<?php endforeach; ?>
                        <?php endforeach; ?>
<?php $footericons = $this->getFooterIcons("icononly");
                        <?php $footericons = $this->getFooterIcons("icononly");
if ( count( $footericons ) > 0 ): ?>
                        if ( count( $footericons ) > 0 ): ?>
<ul id="footer-icons" class="noprint">
                                <ul id="footer-icons" class="noprint">
<?php foreach ( $footericons as $blockName => $footerIcons ): ?>
<?php                   foreach ( $footericons as $blockName => $footerIcons ): ?>
<li id="footer-<?php echo htmlspecialchars( $blockName ); ?>ico">
                                        <li id="footer-<?php echo htmlspecialchars( $blockName ); ?>ico">
<?php foreach ( $footerIcons as $icon ): ?>
<?php                           foreach ( $footerIcons as $icon ): ?>
<?php echo $this->getSkin()->makeFooterIcon( $icon ); ?>
                                                <?php echo $this->getSkin()->makeFooterIcon( $icon ); ?>


<?php endforeach; ?>
<?php                         endforeach; ?>
</li>
                                        </li>
<?php endforeach; ?>
<?php                   endforeach; ?>
</ul>
                              </ul>
<?php endif; ?>
                        <?php endif; ?>
<div style="clear:both"></div>
                        <div style="clear:both"></div>
</div>
                </div>
<!-- /footer -->
                <!-- /footer -->
<?php $this->printTrail(); ?>
                <?php $this->printTrail(); ?>


</body>
        </body>
</html>
</html>
<?php
<?php
}
        }


/**
        /**
* Render a series of portals
        * Render a series of portals
*
        *
* @param $portals array
        * @param $portals array
*/
        */
private function renderPortals( $portals ) {
        private function renderPortals( $portals ) {
// Force the rendering of the following portals
                // Force the rendering of the following portals
if ( !isset( $portals['SEARCH'] ) ) {
                if ( !isset( $portals['SEARCH'] ) ) {
$portals['SEARCH'] = true;
                        $portals['SEARCH'] = true;
}
                }
if ( !isset( $portals['TOOLBOX'] ) ) {
                if ( !isset( $portals['TOOLBOX'] ) ) {
$portals['TOOLBOX'] = true;
                        $portals['TOOLBOX'] = true;
}
                }
if ( !isset( $portals['LANGUAGES'] ) ) {
                if ( !isset( $portals['LANGUAGES'] ) ) {
$portals['LANGUAGES'] = true;
                        $portals['LANGUAGES'] = true;
}
                }
// Render portals
                // Render portals
foreach ( $portals as $name => $content ) {
                foreach ( $portals as $name => $content ) {
if ( $content === false )
                        if ( $content === false )
continue;
                                continue;


echo "\n<!-- {$name} -->\n";
                        echo "\n<!-- {$name} -->\n";
switch( $name ) {
                        switch( $name ) {
case 'SEARCH':
                                case 'SEARCH':
break;
                                        break;
case 'TOOLBOX':
                                case 'TOOLBOX':
$this->renderPortal( 'tb', $this->getToolbox(), 'toolbox', 'SkinTemplateToolboxEnd' );
                                        $this->renderPortal( 'tb', $this->getToolbox(), 'toolbox', 'SkinTemplateToolboxEnd' );
break;
                                        break;
case 'LANGUAGES':
                                case 'LANGUAGES':
if ( $this->data['language_urls'] ) {
                                        if ( $this->data['language_urls'] ) {
$this->renderPortal( 'lang', $this->data['language_urls'], 'otherlanguages' );
                                              $this->renderPortal( 'lang', $this->data['language_urls'], 'otherlanguages' );
}
                                        }
break;
                                      break;
default:
                              default:
$this->renderPortal( $name, $content );
                                      $this->renderPortal( $name, $content );
break;
                                break;
}
                      }
echo "\n<!-- /{$name} -->\n";
                      echo "\n<!-- /{$name} -->\n";
}
              }
}
        }


private function renderPortal( $name, $content, $msg = null, $hook = null ) {
        private function renderPortal( $name, $content, $msg = null, $hook = null ) {
if ( $msg === null ) {
                if ( $msg === null ) {
$msg = $name;
                        $msg = $name;
}
                }
?>
                ?>
<div class="portal" id='<?php echo Sanitizer::escapeId( "p-$name" ) ?>'<?php echo Linker::tooltip( 'p-' . $name ) ?>>
<div class="portal" id='<?php echo Sanitizer::escapeId( "p-$name" ) ?>'<?php echo Linker::tooltip( 'p-' . $name ) ?>>
<h5<?php $this->html( 'userlangattributes' ) ?>><?php $msgObj = wfMessage( $msg ); echo htmlspecialchars( $msgObj->exists() ? $msgObj->text() : $msg ); ?></h5>
        <h5<?php $this->html( 'userlangattributes' ) ?>><?php $msgObj = wfMessage( $msg ); echo htmlspecialchars( $msgObj->exists() ? $msgObj->text() : $msg ); ?></h5>
<div class="body">
        <div class="body">
<?php
<?php
if ( is_array( $content ) ): ?>
                if ( is_array( $content ) ): ?>
<ul>
                <ul>
<?php
<?php
foreach( $content as $key => $val ): ?>
                        foreach( $content as $key => $val ): ?>
<?php echo $this->makeListItem( $key, $val ); ?>
                      <?php echo $this->makeListItem( $key, $val ); ?>


<?php
<?php
endforeach;
                      endforeach;
if ( $hook !== null ) {
                        if ( $hook !== null ) {
wfRunHooks( $hook, array( &$this, true ) );
                                wfRunHooks( $hook, array( &$this, true ) );
}
                      }
?>
                        ?>
</ul>
                </ul>
<?php
<?php
else: ?>
                else: ?>
<?php echo $content; /* Allow raw HTML block to be defined by extensions */ ?>
                <?php echo $content; /* Allow raw HTML block to be defined by extensions */ ?>
<?php
<?php
endif; ?>
                endif; ?>
</div>
        </div>
</div>
</div>
<?php
<?php
}
        }


/**
        /**
* Render one or more navigations elements by name, automatically reveresed
        * Render one or more navigations elements by name, automatically reveresed
* when UI is in RTL mode
        * when UI is in RTL mode
*
        *
* @param $elements array
        * @param $elements array
*/
        */
private function renderNavigation( $elements ) {
        private function renderNavigation( $elements ) {
global $wgVectorUseSimpleSearch;
                global $wgVectorUseSimpleSearch;


// If only one element was given, wrap it in an array, allowing more
                // If only one element was given, wrap it in an array, allowing more
// flexible arguments
              // flexible arguments
if ( !is_array( $elements ) ) {
              if ( !is_array( $elements ) ) {
$elements = array( $elements );
                        $elements = array( $elements );
// If there's a series of elements, reverse them when in RTL mode
                // If there's a series of elements, reverse them when in RTL mode
} elseif ( $this->data['rtl'] ) {
                } elseif ( $this->data['rtl'] ) {
$elements = array_reverse( $elements );
                        $elements = array_reverse( $elements );
}
                }
// Render elements
                // Render elements
foreach ( $elements as $name => $element ) {
                foreach ( $elements as $name => $element ) {
echo "\n<!-- {$name} -->\n";
                        echo "\n<!-- {$name} -->\n";
switch ( $element ) {
                        switch ( $element ) {
case 'NAMESPACES':
                              case 'NAMESPACES':
?>
?>
<div id="p-namespaces" class="vectorTabs<?php if ( count( $this->data['namespace_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">
<div id="p-namespaces" class="vectorTabs<?php if ( count( $this->data['namespace_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">
<h5><?php $this->msg( 'namespaces' ) ?></h5>
<!--    <h5><?php $this->msg( 'namespaces' ) ?></h5>-->
<ul<?php $this->html( 'userlangattributes' ) ?>>
        <ul<?php $this->html( 'userlangattributes' ) ?>>
<?php foreach ( $this->data['namespace_urls'] as $link ): ?>
                <?php foreach ( $this->data['namespace_urls'] as $link ): ?>
<li <?php echo $link['attributes'] ?>><span><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></span></li>
                        <li <?php echo $link['attributes'] ?>><span><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></span></li>
<?php endforeach; ?>
              <?php endforeach; ?>
</ul>
        </ul>
</div>
</div>
<?php
<?php
break;
                              break;
case 'VARIANTS':
                              case 'VARIANTS':
?>
?>
<div id="p-variants" class="vectorMenu<?php if ( count( $this->data['variant_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">
<div id="p-variants" class="vectorMenu<?php if ( count( $this->data['variant_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">
<h4>
        <h4>
<?php foreach ( $this->data['variant_urls'] as $link ): ?>
        <?php foreach ( $this->data['variant_urls'] as $link ): ?>
<?php if ( stripos( $link['attributes'], 'selected' ) !== false ): ?>
              <?php if ( stripos( $link['attributes'], 'selected' ) !== false ): ?>
<?php echo htmlspecialchars( $link['text'] ) ?>
                        <?php echo htmlspecialchars( $link['text'] ) ?>
<?php endif; ?>
              <?php endif; ?>
<?php endforeach; ?>
      <?php endforeach; ?>
</h4>
      </h4>
<h5><span><?php $this->msg( 'variants' ) ?></span><a href="#"></a></h5>
        <h5><span><?php $this->msg( 'variants' ) ?></span><a href="#"></a></h5>
<div class="menu">
        <div class="menu">
<ul<?php $this->html( 'userlangattributes' ) ?>>
              <ul<?php $this->html( 'userlangattributes' ) ?>>
<?php foreach ( $this->data['variant_urls'] as $link ): ?>
                        <?php foreach ( $this->data['variant_urls'] as $link ): ?>
<li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li>
                                <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li>
<?php endforeach; ?>
                      <?php endforeach; ?>
</ul>
                </ul>
</div>
        </div>
</div>
</div>
<?php
<?php
break;
                                break;
case 'VIEWS':
                                case 'VIEWS':
?>
?>
<div id="p-views" class="vectorTabs<?php if ( count( $this->data['view_urls'] ) == 0 ) { echo ' emptyPortlet'; } ?>">
<div id="p-views" class="vectorTabs<?php if ( count( $this->data['view_urls'] ) == 0 ) { echo ' emptyPortlet'; } ?>">
<h5><?php $this->msg('views') ?></h5>
<!--    <h5><?php $this->msg('views') ?></h5>-->
<ul<?php $this->html('userlangattributes') ?>>
        <ul<?php $this->html('userlangattributes') ?>>
<?php foreach ( $this->data['view_urls'] as $link ): ?>
                <?php foreach ( $this->data['view_urls'] as $link ): ?>
<li<?php echo $link['attributes'] ?>><span><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php
                      <li<?php echo $link['attributes'] ?>><span><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php
// $link['text'] can be undefined - bug 27764
                                // $link['text'] can be undefined - bug 27764
if ( array_key_exists( 'text', $link ) ) {
                                if ( array_key_exists( 'text', $link ) ) {
echo array_key_exists( 'img', $link ) ?  '<img src="' . $link['img'] . '" alt="' . $link['text'] . '" />' : htmlspecialchars( $link['text'] );
                                        echo array_key_exists( 'img', $link ) ?  '<img src="' . $link['img'] . '" alt="' . $link['text'] . '" />' : htmlspecialchars( $link['text'] );
}
                                }
?></a></span></li>
                                ?></a></span></li>
<?php endforeach; ?>
              <?php endforeach; ?>
</ul>
        </ul>
</div>
</div>
<?php
<?php
break;
                              break;
case 'ACTIONS':
                                case 'ACTIONS':
?>
?>
<div id="p-cactions" class="vectorMenu<?php if ( count( $this->data['action_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">
<div id="p-cactions" class="vectorMenu<?php if ( count( $this->data['action_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">
<h5><span><?php $this->msg( 'actions' ) ?></span><a href="#"></a></h5>
<!--    <h5><span><?php $this->msg( 'actions' ) ?></span><a href="#"></a></h5>-->
<div class="menu">
        <div class="menu">
<ul<?php $this->html( 'userlangattributes' ) ?>>
                <ul<?php $this->html( 'userlangattributes' ) ?>>
<?php foreach ( $this->data['action_urls'] as $link ): ?>
                        <?php foreach ( $this->data['action_urls'] as $link ): ?>
<li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li>
                              <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li>
<?php endforeach; ?>
                      <?php endforeach; ?>
</ul>
                </ul>
</div>
        </div>
</div>
</div>
<?php
<?php
break;
                                break;
case 'PERSONAL':
                              case 'PERSONAL':
?>
?>
<div id="p-personal" class="<?php if ( count( $this->data['personal_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">
<div id="p-personal" class="<?php if ( count( $this->data['personal_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">
<h5><?php $this->msg( 'personaltools' ) ?></h5>
<!--    <h5><?php $this->msg( 'personaltools' ) ?></h5>-->
<ul<?php $this->html( 'userlangattributes' ) ?>>
        <ul<?php $this->html( 'userlangattributes' ) ?>>
<?php foreach( $this->getPersonalTools() as $key => $item ) { ?>
<?php                 foreach( $this->getPersonalTools() as $key => $item ) { ?>
<?php echo $this->makeListItem( $key, $item ); ?>
                <?php echo $this->makeListItem( $key, $item ); ?>


<?php } ?>
<?php                 } ?>
</ul>
        </ul>
</div>
</div>
<?php
<?php
break;
                              break;
case 'SEARCH':
                                case 'SEARCH':
?>
?>
<div id="p-search">
<div id="p-search">
<h5<?php $this->html( 'userlangattributes' ) ?>><label for="searchInput"><?php $this->msg( 'search' ) ?></label></h5>
<!--    <h5<?php $this->html( 'userlangattributes' ) ?>><label for="searchInput"><?php $this->msg( 'search' ) ?></label></h5>-->
<form action="<?php $this->text( 'wgScript' ) ?>" id="searchform">
        <form action="<?php $this->text( 'wgScript' ) ?>" id="searchform">
<?php if ( $wgVectorUseSimpleSearch && $this->getSkin()->getUser()->getOption( 'vector-simplesearch' ) ): ?>
                <?php if ( $wgVectorUseSimpleSearch && $this->getSkin()->getUser()->getOption( 'vector-simplesearch' ) ): ?>
<div id="simpleSearch">
                <div id="simpleSearch">
<?php if ( $this->data['rtl'] ): ?>
                      <?php if ( $this->data['rtl'] ): ?>
<?php echo $this->makeSearchButton( 'image', array( 'id' => 'searchButton', 'src' => $this->getSkin()->getSkinStylePath( 'images/search-rtl.png' ) ) ); ?>
                        <?php echo $this->makeSearchButton( 'image', array( 'id' => 'searchButton', 'src' => $this->getSkin()->getSkinStylePath( 'images/search-rtl.png' ) ) ); ?>
<?php endif; ?>
                        <?php endif; ?>
<?php echo $this->makeSearchInput( array( 'id' => 'searchInput', 'type' => 'text' ) ); ?>
                        <?php echo $this->makeSearchInput( array( 'id' => 'searchInput', 'type' => 'text' ) ); ?>
<?php if ( !$this->data['rtl'] ): ?>
                        <?php if ( !$this->data['rtl'] ): ?>
<?php echo $this->makeSearchButton( 'image', array( 'id' => 'searchButton', 'src' => $this->getSkin()->getSkinStylePath( 'images/search-ltr.png' ) ) ); ?>
                        <?php echo $this->makeSearchButton( 'image', array( 'id' => 'searchButton', 'src' => $this->getSkin()->getSkinStylePath( 'images/search-ltr.png' ) ) ); ?>
<?php endif; ?>
                        <?php endif; ?>
<?php else: ?>
              <?php else: ?>
<div>
              <div>
<?php echo $this->makeSearchInput( array( 'id' => 'searchInput' ) ); ?>
                      <?php echo $this->makeSearchInput( array( 'id' => 'searchInput' ) ); ?>
<?php echo $this->makeSearchButton( 'go', array( 'id' => 'searchGoButton', 'class' => 'searchButton' ) ); ?>
                        <?php echo $this->makeSearchButton( 'go', array( 'id' => 'searchGoButton', 'class' => 'searchButton' ) ); ?>
<?php echo $this->makeSearchButton( 'fulltext', array( 'id' => 'mw-searchButton', 'class' => 'searchButton' ) ); ?>
                        <?php echo $this->makeSearchButton( 'fulltext', array( 'id' => 'mw-searchButton', 'class' => 'searchButton' ) ); ?>
<?php endif; ?>
              <?php endif; ?>
<input type='hidden' name="title" value="<?php $this->text( 'searchtitle' ) ?>"/>
                        <input type='hidden' name="title" value="<?php $this->text( 'searchtitle' ) ?>"/>
</div>
                </div>
</form>
        </form>
</div>
</div>
<?php
<?php


break;
                                break;
}
                      }
echo "\n<!-- /{$name} -->\n";
                      echo "\n<!-- /{$name} -->\n";
}
              }
}
      }
}
}
}
</source>

Latest revision as of 05:21, 13 December 2013

<source lang="php"> <?php /**

* Vector - Modern version of MonoBook with fresh look and many usability
* improvements.
*
* @todo document
* @file
* @ingroup Skins
*/

if( !defined( 'MEDIAWIKI' ) ) {

       die( -1 );

}

// This code is necessary to get it to produce a printable version that // doesn't have the Mises.org header taking up half the first page. if ( isset ( $_REQUEST[ 'printable' ] ) ) {

               // Vector.printable.php is simply the Vector.php from MW v1.19.2.
               require_once ( "Vector.printable.php" );

} else {

/**

* SkinTemplate class for Vector skin
* @ingroup Skins
*/

class SkinVector extends SkinTemplate {

       var $skinname = 'vector', $stylename = 'vector',
               $template = 'VectorTemplate', $useHeadElement = true;
       /**
        * Initializes output page and sets up skin-specific parameters
        * @param $out OutputPage object to initialize
        */
      	public function initPage( OutputPage $out ) {
               global $wgLocalStylePath;
              	parent::initPage( $out );
               // 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.
              	$min = $this->getRequest()->getFuzzyBool( 'debug' ) ?  : '.min';
               $out->addHeadItem( 'csshover',
                      	'"
               );
              	$out->addModuleScripts( 'skins.vector' );
       }
       /**
        * Load skin and user CSS files in the correct order
        * fixes bug 22916
        * @param $out OutputPage object
        */
      	function setupSkinUserCss( OutputPage $out ){
               parent::setupSkinUserCss( $out );
               $out->addModuleStyles( 'skins.vector' );
      $out->addStyle( 'misesskin/main.css', 'screen');
       }

}

/**

* QuickTemplate class for Vector skin
* @ingroup Skins
*/

class VectorTemplate extends BaseTemplate {

       /* Functions */
       /**
        * Outputs the entire contents of the (X)HTML page
        */
       public function execute() {
               global $wgVectorUseIconWatch;
              	// Build additional attributes for navigation urls
               $nav = $this->data['content_navigation'];
               if ( $wgVectorUseIconWatch ) {
                       $mode = $this->getSkin()->getTitle()->userIsWatching() ? 'unwatch' : 'watch';
                       if ( isset( $nav['actions'][$mode] ) ) {
                               $nav['views'][$mode] = $nav['actions'][$mode];
                               $nav['views'][$mode]['class'] = rtrim( 'icon ' . $nav['views'][$mode]['class'], ' ' );
                               $nav['views'][$mode]['primary'] = true;
                               unset( $nav['actions'][$mode] );
                       }
               }
               $xmlID = ;
               foreach ( $nav as $section => $links ) {
                       foreach ( $links as $key => $link ) {
                               if ( $section == 'views' && !( isset( $link['primary'] ) && $link['primary'] ) ) {
                                      	$link['class'] = rtrim( 'collapsible ' . $link['class'], ' ' );
                               }
                               $xmlID = isset( $link['id'] ) ? $link['id'] : 'ca-' . $xmlID;
                              	$nav[$section][$key]['attributes'] =
                                      	' id="' . Sanitizer::escapeId( $xmlID ) . '"';
                              	if ( $link['class'] ) {
                                       $nav[$section][$key]['attributes'] .=
                                               ' class="' . htmlspecialchars( $link['class'] ) . '"';
                                       unset( $nav[$section][$key]['class'] );
                               }
                              	if ( isset( $link['tooltiponly'] ) && $link['tooltiponly'] ) {
                                      	$nav[$section][$key]['key'] =
                                               Linker::tooltip( $xmlID );
                              	} else {
                                      	$nav[$section][$key]['key'] =
                                              	Xml::expandAttributes( Linker::tooltipAndAccesskeyAttribs( $xmlID ) );
                              	}
                       }
               }
               $this->data['namespace_urls'] = $nav['namespaces'];
               $this->data['view_urls'] = $nav['views'];
              	$this->data['action_urls'] = $nav['actions'];
               $this->data['variant_urls'] = $nav['variants'];
               // Reverse horizontally rendered navigation elements
               if ( $this->data['rtl'] ) {
                       $this->data['view_urls'] =
                               array_reverse( $this->data['view_urls'] );
                       $this->data['namespace_urls'] =
                               array_reverse( $this->data['namespace_urls'] );
                       $this->data['personal_urls'] =
                               array_reverse( $this->data['personal_urls'] );
               }
               // Output HTML Page
               $this->html( 'headelement' );

?>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js" type="text/javascript"></script> <script>$(document).ready(function(){

$('#footer').wrap('

                       <?php $this->renderNavigation( 'PERSONAL' ); ?>
                              	<?php $this->renderNavigation( array( 'NAMESPACES', 'VARIANTS' ) ); ?>
                               <?php $this->renderNavigation( array( 'VIEWS', 'ACTIONS', 'SEARCH' ) ); ?>
               <div id="footer"<?php $this->html( 'userlangattributes' ) ?>>
                       <?php foreach( $this->getFooterLinks() as $category => $links ): ?>
                               <ul id="footer-<?php echo $category ?>">
                                       <?php foreach( $links as $link ): ?>
<li id="footer-<?php echo $category ?>-<?php echo $link ?>"><?php $this->html( $link ) ?> <?php endforeach; ?>
                       <?php endforeach; ?>
                       <?php $footericons = $this->getFooterIcons("icononly");
                       if ( count( $footericons ) > 0 ): ?>
                       <?php endif; ?>
               <?php $this->printTrail(); ?>
       </body>

</html> <?php

       }
       /**
        * Render a series of portals
        *
        * @param $portals array
        */
       private function renderPortals( $portals ) {
               // Force the rendering of the following portals
               if ( !isset( $portals['SEARCH'] ) ) {
                       $portals['SEARCH'] = true;
               }
               if ( !isset( $portals['TOOLBOX'] ) ) {
                       $portals['TOOLBOX'] = true;
               }
               if ( !isset( $portals['LANGUAGES'] ) ) {
                       $portals['LANGUAGES'] = true;
               }
               // Render portals
               foreach ( $portals as $name => $content ) {
                       if ( $content === false )
                               continue;
                       echo "\n\n";
                       switch( $name ) {
                               case 'SEARCH':
                                       break;
                               case 'TOOLBOX':
                                       $this->renderPortal( 'tb', $this->getToolbox(), 'toolbox', 'SkinTemplateToolboxEnd' );
                                       break;
                               case 'LANGUAGES':
                                       if ( $this->data['language_urls'] ) {
                                              	$this->renderPortal( 'lang', $this->data['language_urls'], 'otherlanguages' );
                                       }
                                      	break;
                              	default:
                                      	$this->renderPortal( $name, $content );
                               break;
                      	}
                      	echo "\n\n";
              	}
       }
       private function renderPortal( $name, $content, $msg = null, $hook = null ) {
               if ( $msg === null ) {
                       $msg = $name;
               }
               ?>

<div class="portal" id='<?php echo Sanitizer::escapeId( "p-$name" ) ?>'<?php echo Linker::tooltip( 'p-' . $name ) ?>>

<h5<?php $this->html( 'userlangattributes' ) ?>><?php $msgObj = wfMessage( $msg ); echo htmlspecialchars( $msgObj->exists() ? $msgObj->text() : $msg ); ?>

<?php

               if ( is_array( $content ) ): ?>
    <?php foreach( $content as $key => $val ): ?> <?php echo $this->makeListItem( $key, $val ); ?> <?php endforeach; if ( $hook !== null ) { wfRunHooks( $hook, array( &$this, true ) ); }  ?>

<?php

               else: ?>
               <?php echo $content; /* Allow raw HTML block to be defined by extensions */ ?>

<?php

               endif; ?>

<?php

       }
       /**
        * Render one or more navigations elements by name, automatically reveresed
        * when UI is in RTL mode
        *
        * @param $elements array
        */
       private function renderNavigation( $elements ) {
               global $wgVectorUseSimpleSearch;
               // If only one element was given, wrap it in an array, allowing more
              	// flexible arguments
              	if ( !is_array( $elements ) ) {
                       $elements = array( $elements );
               // If there's a series of elements, reverse them when in RTL mode
               } elseif ( $this->data['rtl'] ) {
                       $elements = array_reverse( $elements );
               }
               // Render elements
               foreach ( $elements as $name => $element ) {
                       echo "\n\n";
                       switch ( $element ) {
                              	case 'NAMESPACES':

?> <div id="p-namespaces" class="vectorTabs<?php if ( count( $this->data['namespace_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">

       <ul<?php $this->html( 'userlangattributes' ) ?>>
               <?php foreach ( $this->data['namespace_urls'] as $link ): ?>

<li <?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a> <?php endforeach; ?>

<?php

                              	break;
                              	case 'VARIANTS':

?> <div id="p-variants" class="vectorMenu<?php if ( count( $this->data['variant_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">

<?php foreach ( $this->data['variant_urls'] as $link ): ?> <?php if ( stripos( $link['attributes'], 'selected' ) !== false ): ?> <?php echo htmlspecialchars( $link['text'] ) ?> <?php endif; ?> <?php endforeach; ?>

<?php $this->msg( 'variants' ) ?><a href="#"></a>

<?php

                               break;
                               case 'VIEWS':

?> <div id="p-views" class="vectorTabs<?php if ( count( $this->data['view_urls'] ) == 0 ) { echo ' emptyPortlet'; } ?>">

       <ul<?php $this->html('userlangattributes') ?>>
               <?php foreach ( $this->data['view_urls'] as $link ): ?>
                      	<li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php
                               // $link['text'] can be undefined - bug 27764
                               if ( array_key_exists( 'text', $link ) ) {
                                       echo array_key_exists( 'img', $link ) ?  '<img src="' . $link['img'] . '" alt="' . $link['text'] . '" />' : htmlspecialchars( $link['text'] );
                               }

 ?></a> <?php endforeach; ?>

<?php

                              	break;
                               case 'ACTIONS':

?> <div id="p-cactions" class="vectorMenu<?php if ( count( $this->data['action_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">

<?php

                               break;
                              	case 'PERSONAL':

?> <div id="p-personal" class="<?php if ( count( $this->data['personal_urls'] ) == 0 ) echo ' emptyPortlet'; ?>">

       <ul<?php $this->html( 'userlangattributes' ) ?>>

<?php foreach( $this->getPersonalTools() as $key => $item ) { ?>

               <?php echo $this->makeListItem( $key, $item ); ?>

<?php } ?>

<?php

                              	break;
                               case 'SEARCH':

?>