192c91ef8SJana Deutschländer<?php 292c91ef8SJana Deutschländerif(!defined('DOKU_INC')) die(); 3038d4bfeSAndreas Gohrglobal $lang; 4038d4bfeSAndreas Gohr 5038d4bfeSAndreas Gohr$tabs = array(); 6038d4bfeSAndreas Gohr 7038d4bfeSAndreas Gohr$toc = tpl_toc(true); 8038d4bfeSAndreas Gohrif($toc) { 9038d4bfeSAndreas Gohr $tabs[] = array( 10038d4bfeSAndreas Gohr 'id' => 'spr__tab-toc', 11038d4bfeSAndreas Gohr 'label' => $lang['toc'], 12038d4bfeSAndreas Gohr 'tab' => $toc, 13038d4bfeSAndreas Gohr 'count' => null, 14038d4bfeSAndreas Gohr ); 15038d4bfeSAndreas Gohr} 16038d4bfeSAndreas Gohr 17038d4bfeSAndreas Gohr/** @var helper_plugin_tagging $tags */ 18038d4bfeSAndreas Gohr$tags = plugin_load('helper', 'tagging'); 19038d4bfeSAndreas Gohrif($tags) { 20038d4bfeSAndreas Gohr $tabs[] = array( 21038d4bfeSAndreas Gohr 'id' => 'spr__tab-tags', 22038d4bfeSAndreas Gohr 'label' => tpl_getLang('tab_tags'), 23038d4bfeSAndreas Gohr 'tab' => $tags->tpl_tags(false), 24038d4bfeSAndreas Gohr 'count' => null, // FIXME 25038d4bfeSAndreas Gohr ); 26038d4bfeSAndreas Gohr} 27038d4bfeSAndreas Gohr 28038d4bfeSAndreas Gohr// fixme add magicmatcher info 2992c91ef8SJana Deutschländer 3092c91ef8SJana Deutschländer?> 31d62df8bdSJana Deutschländer<div class="tab-container"> 32d62df8bdSJana Deutschländer <ul class="meta-tabs"> 33038d4bfeSAndreas Gohr <?php 34038d4bfeSAndreas Gohr foreach($tabs as $tab) { 35038d4bfeSAndreas Gohr echo '<li>'; 36038d4bfeSAndreas Gohr echo '<a href="#' . $tab['id'] . '" aria-expanded="false">'; 37038d4bfeSAndreas Gohr echo '<span class="prefix">'; 38038d4bfeSAndreas Gohr echo $tab['label']; 39038d4bfeSAndreas Gohr if($tab['count'] !== null) { 40038d4bfeSAndreas Gohr echo ' <span class="num">' . $tab['count'] . '</span>'; 41038d4bfeSAndreas Gohr } 42038d4bfeSAndreas Gohr echo '</span>'; 43*ec6c9219SAndreas Gohr echo '</a>'; 44038d4bfeSAndreas Gohr echo '</li>'; 45038d4bfeSAndreas Gohr } 46038d4bfeSAndreas Gohr ?> 4738297711SJana Deutschländer </ul> 4838297711SJana Deutschländer 49d62df8bdSJana Deutschländer <div class="meta-content"> 50d62df8bdSJana Deutschländer <div class="box-content"> 511b899691SJana Deutschländer <?php 52038d4bfeSAndreas Gohr foreach($tabs as $tab) { 53038d4bfeSAndreas Gohr echo '<div id="' . $tab['id'] . '" class="tab-pane" aria-hidden="true">'; 54038d4bfeSAndreas Gohr echo $tab['tab']; 55038d4bfeSAndreas Gohr echo '</div>'; 561b899691SJana Deutschländer } 571b899691SJana Deutschländer ?> 581b899691SJana Deutschländer </div> 591b899691SJana Deutschländer </div> 6038297711SJana Deutschländer</div> 61