2015-10-01 16:00:26 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2015-11-04 03:22:00 +01:00
|
|
|
* Skin file for Pivot
|
2015-10-01 16:00:26 +02:00
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
class Skinpivot extends SkinTemplate {
|
|
|
|
public $skinname = 'pivot', $stylename = 'pivot', $template = 'pivotTemplate', $useHeadElement = true;
|
|
|
|
|
|
|
|
public function setupSkinUserCss(OutputPage $out) {
|
|
|
|
parent::setupSkinUserCss($out);
|
|
|
|
global $wgPivotFeatures;
|
|
|
|
$wgPivotFeaturesDefaults = array(
|
|
|
|
'showActionsForAnon' => true,
|
2015-10-04 01:09:14 +02:00
|
|
|
'fixedNavBar' => false,
|
2015-10-01 16:00:26 +02:00
|
|
|
'showHelpUnderTools' => true,
|
|
|
|
'showRecentChangesUnderTools' => true,
|
|
|
|
'wikiName' => &$GLOBALS['wgSitename'],
|
|
|
|
'wikiNameDesktop' => &$GLOBALS['wgSitename'],
|
2015-10-04 01:49:50 +02:00
|
|
|
'navbarIcon' => false,
|
2015-10-01 16:00:26 +02:00
|
|
|
'IeEdgeCode' => 1,
|
2015-10-04 01:09:14 +02:00
|
|
|
'showFooterIcons' => false,
|
|
|
|
'addThisPUBID' => '',
|
|
|
|
'useAddThisShare' => false,
|
|
|
|
'useAddThisFollow' => false
|
2015-10-01 16:00:26 +02:00
|
|
|
);
|
|
|
|
foreach ($wgPivotFeaturesDefaults as $fgOption => $fgOptionValue) {
|
|
|
|
if ( !isset($wgPivotFeatures[$fgOption]) ) {
|
|
|
|
$wgPivotFeatures[$fgOption] = $fgOptionValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch ($wgPivotFeatures['IeEdgeCode']) {
|
|
|
|
case 1:
|
|
|
|
$out->addHeadItem('ie-meta', '<meta http-equiv="X-UA-Compatible" content="IE=edge" />');
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
|
|
|
|
header('X-UA-Compatible: IE=edge');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$out->addModuleStyles('skins.pivot');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function initPage( OutputPage $out ) {
|
|
|
|
global $wgLocalStylePath;
|
|
|
|
parent::initPage($out);
|
|
|
|
|
|
|
|
$viewport_meta = 'width=device-width, user-scalable=yes, initial-scale=1.0';
|
|
|
|
$out->addMeta('viewport', $viewport_meta);
|
|
|
|
$out->addModuleScripts('skins.pivot');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class pivotTemplate extends BaseTemplate {
|
|
|
|
public function execute() {
|
|
|
|
global $wgUser;
|
|
|
|
global $wgPivotFeatures;
|
|
|
|
wfSuppressWarnings();
|
|
|
|
$this->html('headelement');
|
|
|
|
switch ($wgPivotFeatures['usePivotTabs']) {
|
2015-11-04 03:40:45 +01:00
|
|
|
case true:
|
2015-10-01 16:00:26 +02:00
|
|
|
ob_start();
|
|
|
|
$this->html('bodytext');
|
|
|
|
$out = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
$markers = array("<a", "</a", ">");
|
|
|
|
$tags = array("<a", "</a", ">");
|
|
|
|
$body = str_replace($markers, $tags, $out);
|
|
|
|
break;
|
|
|
|
default:
|
2015-11-04 05:23:57 +01:00
|
|
|
$body = '';
|
2015-10-01 16:00:26 +02:00
|
|
|
break;
|
|
|
|
}
|
2015-10-04 01:09:14 +02:00
|
|
|
switch ($wgPivotFeatures['showFooterIcons']) {
|
|
|
|
case true:
|
|
|
|
$footerLeftClass = 'small-12 medium-8 large-9 columns';
|
|
|
|
$footerRightClass = 'small-12 medium-4 large-3 columns';
|
|
|
|
$poweredbyType = "icononly";
|
|
|
|
$poweredbyMakeType = 'withImage';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$footerLeftClass = 'small-12 medium-8 large-9 columns';
|
|
|
|
$footerRightClass = 'small-12 medium-4 large-3 columns';
|
|
|
|
$poweredbyType = "nocopyright";
|
|
|
|
$poweredbyMakeType = 'withoutImage';
|
|
|
|
break;
|
|
|
|
}
|
2015-10-01 16:00:26 +02:00
|
|
|
|
|
|
|
?>
|
2015-11-04 04:04:49 +01:00
|
|
|
<!-- START PIVOTTEMPLATE -->
|
2015-10-01 16:00:26 +02:00
|
|
|
<div class="off-canvas-wrap docs-wrap" data-offcanvas="">
|
|
|
|
<div class="inner-wrap">
|
2015-10-04 01:09:14 +02:00
|
|
|
<?php if ($wgPivotFeatures['fixedNavBar'] != false) echo "<div class='fixed'>";?>
|
2015-10-01 16:00:26 +02:00
|
|
|
<nav class="tab-bar">
|
2015-11-04 03:22:00 +01:00
|
|
|
<section id="left-nav-aside" class="left-small show-for-small">
|
2015-10-01 16:00:26 +02:00
|
|
|
<a class="left-off-canvas-toggle"><span id="menu-user"><i class="fa fa-navicon fa-lg"></i></span></a>
|
|
|
|
</section>
|
|
|
|
|
2015-11-04 03:22:00 +01:00
|
|
|
<section id="middle-nav" class="middle tab-bar-section">
|
2015-10-04 01:09:14 +02:00
|
|
|
<h1 class="title"><a href="<?php echo $this->data['nav_urls']['mainpage']['href']; ?>">
|
|
|
|
<span class="show-for-medium-up"><?php echo $wgPivotFeatures['wikiNameDesktop']; ?></span>
|
|
|
|
<span class="show-for-small-only">
|
|
|
|
<?php if ($wgPivotFeatures['navbarIcon'] != false) { ?>
|
|
|
|
<img alt="<?php echo $this->text('sitename'); ?>" src="<?php echo $this->text('logopath'); ?>" style="max-width: 64px;height:auto; max-height:36px; display: inline-block; vertical-align:middle;">
|
|
|
|
<?php } ?>
|
|
|
|
<?php echo $wgPivotFeatures['wikiName']; ?></span></a></h1>
|
2015-10-01 16:00:26 +02:00
|
|
|
</section>
|
|
|
|
|
2015-11-04 03:22:00 +01:00
|
|
|
<section id="right-nav-aside" class="right-small">
|
|
|
|
<a class="right-off-canvas-toggle"><span id="menu-user"><i class="fa <?php if ($wgUser->isLoggedIn()): ?>fa-user<?php else: ?>fa-navicon<?php endif; ?> fa-lg"></i></span></a>
|
2015-10-01 16:00:26 +02:00
|
|
|
</section>
|
2015-10-04 01:09:14 +02:00
|
|
|
</nav>
|
|
|
|
<?php if ($wgPivotFeatures['fixedNavBar'] != false) echo "</div>";?>
|
2015-10-01 16:00:26 +02:00
|
|
|
<aside class="left-off-canvas-menu">
|
|
|
|
<ul class="off-canvas-list">
|
|
|
|
|
|
|
|
<li class="has-form">
|
2015-11-04 03:22:00 +01:00
|
|
|
<form action="/w/index.php" id="searchform-offcanvas" class="mw-search">
|
2015-10-01 16:00:26 +02:00
|
|
|
<div class="row collapse">
|
|
|
|
<div class="small-12 columns">
|
2015-11-04 03:22:00 +01:00
|
|
|
<input type="search" name="search" placeholder="Search" title="Search [alt-shift-f]" accesskey="f" id="searchInput-offcanvas" autocomplete="off">
|
2015-10-01 16:00:26 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</li>
|
2015-11-04 13:50:24 +01:00
|
|
|
|
|
|
|
<?php include(__DIR__.'/view/sidebar.php'); ?>
|
2015-11-04 03:22:00 +01:00
|
|
|
</ul>
|
2015-10-01 16:00:26 +02:00
|
|
|
</aside>
|
|
|
|
|
2015-11-04 03:22:00 +01:00
|
|
|
<aside class="right-off-canvas-menu">
|
|
|
|
<ul class="off-canvas-list">
|
|
|
|
<?php if ($wgUser->isLoggedIn()): ?>
|
|
|
|
<li id="personal-tools"><label>Personal</label></li>
|
|
|
|
<?php foreach ( $this->getPersonalTools() as $key => $item ) { echo $this->makeListItem($key, $item); } ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php if (isset($this->data['personal_urls']['anonlogin'])): ?>
|
|
|
|
<li><a href="<?php echo $this->data['personal_urls']['anonlogin']['href']; ?>"><?php echo wfMessage( 'login' )->text() ?></a></li>
|
|
|
|
<?php elseif (isset($this->data['personal_urls']['login'])): ?>
|
|
|
|
<li><a href="<?php echo htmlspecialchars($this->data['personal_urls']['login']['href']); ?>"><?php echo wfMessage( 'login' )->text() ?></a></li>
|
|
|
|
<?php else: ?>
|
|
|
|
<li><?php echo Linker::link(Title::newFromText('Special:UserLogin'), wfMessage( 'login' )->text()); ?></li>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</ul>
|
|
|
|
</aside>
|
2015-10-01 16:00:26 +02:00
|
|
|
|
2015-11-04 03:22:00 +01:00
|
|
|
<section id="main-section" class="main-section" <?php if ($wgPivotFeatures['fixedNavBar'] != false) echo "style='margin-top:2.8125em'"; ?>>
|
|
|
|
|
|
|
|
<div id="page-content">
|
|
|
|
|
|
|
|
<div id="mw-js-message" style="display:none;"></div>
|
2015-10-01 16:00:26 +02:00
|
|
|
|
2015-11-04 03:22:00 +01:00
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div id="sidebar" class="large-2 medium-3 columns hide-for-small">
|
|
|
|
<ul class="side-nav">
|
|
|
|
<li class="name logo">
|
|
|
|
<a href="<?php echo $this->data['nav_urls']['mainpage']['href']; ?>">
|
|
|
|
<img alt="<?php echo $this->text('sitename'); ?>" src="<?php echo $this->text('logopath') ?>" style="max-width: 100%;height:auto;display: inline-block; vertical-align:middle;text-align:center;"></a>
|
|
|
|
</li>
|
|
|
|
<li class="has-form">
|
|
|
|
<form action="/w/index.php" id="searchform" class="mw-search">
|
|
|
|
<div class="row collapse">
|
|
|
|
<div class="small-12 columns">
|
|
|
|
<input type="search" name="search" placeholder="Search" title="Search [alt-shift-f]" accesskey="f" id="searchInput" autocomplete="off">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</li>
|
|
|
|
|
2015-11-04 13:50:24 +01:00
|
|
|
<?php include(__DIR__.'/view/sidebar.php'); ?>
|
2015-11-04 03:22:00 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="p-cactions" class="large-10 medium-9 columns">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="large-12 columns">
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<div id="siteNotice" class="sitenotice panel radius"><?php echo $this->text('sitename') . ' '. wfMessage( 'pivot-browsermsg' )->text(); ?></div>
|
|
|
|
<![endif]-->
|
|
|
|
|
|
|
|
<?php if ( $this->data['sitenotice'] ) { ?><div id="siteNotice" class="sitenotice panel radius"><?php $this->html( 'sitenotice' ); ?></div><?php } ?>
|
|
|
|
<?php if ( $this->data['newtalk'] ) { ?><div id="usermessage" class="newtalk panel radius"><?php $this->html( 'newtalk' ); ?></div><?php } ?>
|
2015-10-01 16:00:26 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-11-04 03:22:00 +01:00
|
|
|
|
|
|
|
<?php if ($wgUser->isLoggedIn() || $wgPivotFeatures['showActionsForAnon']): ?>
|
|
|
|
<a href="#" data-options="align:left" data-dropdown="drop1" class="button secondary small radius pull-right" id="drop"><i class="fa fa-navicon fa-lg"><span id="page-actions" class="show-for-medium-up"> <?php echo wfMessage( 'actions' )->text() ?></span></i></a>
|
|
|
|
<ul id="drop1" class="tiny content f-dropdown" data-dropdown-content>
|
|
|
|
<?php foreach( $this->data['content_actions'] as $key => $item ) { echo preg_replace(array('/\sprimary="1"/','/\scontext="[a-z]+"/','/\srel="archives"/'),'',$this->makeListItem($key, $item)); } ?>
|
|
|
|
<?php wfRunHooks( SkinTemplateToolboxEnd, array( &$this, true ) ); ?>
|
|
|
|
</ul>
|
|
|
|
<?php if ($wgUser->isLoggedIn()): ?>
|
|
|
|
<div id="echo-notifications"></div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endif;
|
|
|
|
$namespace = str_replace('_', ' ', $this->getSkin()->getTitle()->getNsText());
|
|
|
|
$displaytitle = $this->data['title'];
|
|
|
|
if (!empty($namespace)) {
|
|
|
|
$pagetitle = $this->getSkin()->getTitle();
|
|
|
|
$newtitle = str_replace($namespace.':', '', $pagetitle);
|
|
|
|
$displaytitle = str_replace($pagetitle, $newtitle, $displaytitle);
|
|
|
|
?><h4 class="namespace label"><?php print $namespace; ?></h4><?php } ?>
|
|
|
|
<h2 class="title"><?php print $displaytitle; ?></h2>
|
|
|
|
<?php if ($wgPivotFeatures['useAddThisShare'] != false) { ?>
|
|
|
|
<!-- Go to www.addthis.com/dashboard to customize your tools -->
|
|
|
|
<div class="addthis_sharing_toolbox show-for-large-up"></div>
|
|
|
|
<!-- Go to www.addthis.com/dashboard to customize your tools -->
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ( $this->data['isarticle'] ) { ?><h3 id="tagline"><?php $this->msg( 'tagline' ) ?></h3><?php } ?>
|
|
|
|
<h5 class="subtitle"><?php $this->html('subtitle') ?></h5>
|
|
|
|
<div class="clear_both"></div>
|
|
|
|
<?php
|
|
|
|
switch ($wgPivotFeatures['usePivotTabs']) {
|
2015-11-04 05:23:57 +01:00
|
|
|
case true:
|
2015-11-04 03:22:00 +01:00
|
|
|
echo $body;
|
|
|
|
ob_flush();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->html('bodytext');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<div id="categories" class="row">
|
|
|
|
<div class="small-12 columns">
|
|
|
|
<div class="group"><?php $this->html('catlinks'); ?></div>
|
|
|
|
<?php $this->html('dataAfterContent'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer class="row">
|
2015-10-01 16:00:26 +02:00
|
|
|
|
2015-11-04 03:22:00 +01:00
|
|
|
<div id="footer">
|
|
|
|
<div id="footer-left" class="<?php echo $footerLeftClass;?>">
|
|
|
|
<ul id="footer-left">
|
|
|
|
<?php foreach ( $this->getFooterLinks( "flat" ) as $key ) { ?>
|
|
|
|
<li id="footer-<?php echo $key ?>"><?php $this->html( $key ) ?></li>
|
|
|
|
<?php } ?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div id="footer-right-icons" class="<?php echo $footerRightClass;?>">
|
|
|
|
<ul id="footer-right">
|
|
|
|
<li class="social-follow">
|
|
|
|
<?php if ($wgPivotFeatures['useAddThisFollow'] != false) { ?>
|
|
|
|
<div class="social-links">
|
|
|
|
<!-- Go to www.addthis.com/dashboard to customize your tools -->
|
|
|
|
<div class="addthis_horizontal_follow_toolbox show-for-large-up"></div>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
</li>
|
|
|
|
<?php foreach ( $this->getFooterIcons( $poweredbyType ) as $blockName => $footerIcons ) { ?>
|
|
|
|
<li class="<?php echo $blockName ?>"><?php foreach ( $footerIcons as $icon ) { ?>
|
|
|
|
<?php echo $this->getSkin()->makeFooterIcon( $icon, $poweredbyMakeType ); ?>
|
|
|
|
<?php } ?>
|
|
|
|
</li>
|
|
|
|
<?php } ?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
</div>
|
2015-10-01 16:00:26 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-11-04 03:22:00 +01:00
|
|
|
|
|
|
|
</section>
|
2015-10-01 16:00:26 +02:00
|
|
|
|
2015-11-04 03:22:00 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<a class="exit-off-canvas"></a>
|
2015-10-01 16:00:26 +02:00
|
|
|
</div>
|
2015-11-04 03:22:00 +01:00
|
|
|
|
2015-10-01 16:00:26 +02:00
|
|
|
|
|
|
|
<?php $this->printTrail(); ?>
|
|
|
|
|
2015-11-04 03:40:45 +01:00
|
|
|
<?php if ($wgPivotFeatures['addThisFollowPUBID'] != '') { ?>
|
2015-11-04 04:04:49 +01:00
|
|
|
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=<?php echo $wgPivotFeatures['addThisPUBID'];?>" async="async">></script>
|
2015-10-04 01:09:14 +02:00
|
|
|
<?php } ?>
|
2015-10-01 16:00:26 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
wfRestoreWarnings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|