0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: block.tabs.php
<?php /* $Id: block.tabs.php 17152 2009-03-03 23:52:44Z luciash $ */ // this script may only be included - so it's better to die if called directly if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } /** * \brief smarty_block_tabs : add tabs to a template * * params: TODO * * usage: * \code * {tabs} * {tr}First Tab{/tr}| * {tr}Second Tab{/tr}| * {tr}Third Tab{/tr} * {/tabs} * \endcode * */ function smarty_block_tabs($params, $content, &$smarty) { global $prefs; if ( $content == '' ) { return; } else { $tabs = split("\|", trim($content)); $ret = '<div class="tabs"> '; $i = 1; $max = 0; foreach ($tabs as $value) { $max++; } foreach ($tabs as $value) { $ret .= ' <span id="tab'.$i.'" class="tabmark tabinactive"><a href="#content'.$i.'" onclick="javascript:tikitabs('.$i.','.$max.'); return false;">'.$value.'</a></span> '; $i++; } $ret .= '</div>'; return $ret; } }