File: /home/eblama1/sms.karnplayinland.com/functions/Tabs.php
<?php
/**
* Tabs functions
*
* @package RosarioSIS
* @subpackage functions
*/
/**
* Wrap Tabs
* used by `PopTable()` or `ListOutput()` header
*
* @example WrapTabs( $cats, 'Modules.php?modname=' . $_REQUEST['modname'] . '&cat_id=' . $_REQUEST['cat_id'] )
*
* @param array $tabs Tabs, titles + links.
* @param string $selected Selected Tab link (optional).
*
* @return string Tabs HTML
*/
function WrapTabs( $tabs, $selected = '' )
{
if ( ! $tabs )
{
return '';
}
$tabs_html = '<div class="h3multi">';
$self_link = PreparePHP_SELF();
foreach ( (array) $tabs as $tab )
{
$selected_tab = false;
if ( $tab['link'] === $selected
|| ( ! $selected
&& $tab['link'] == $self_link ) )
{
$selected_tab = true;
}
$tabs_html .= DrawTab( $tab['title'], $tab['link'], $selected_tab );
}
return $tabs_html . '</div>';
}
/**
* Draw Tab
* used by `PopTable()` & `WrapTabs()`
*
* @param string $title Tab title.
* @param string $link Tab link (optional).
* @param boolean $selected Selected Tab (optional).
*
* @return string Tab HTML
*/
function DrawTab( $title, $link = '', $selected = false )
{
$title = ParseMLField( (string) $title );
// Non breaking spaces in title.
if ( mb_substr( $title, 0, 1 ) !== '<' )
{
$title = str_replace( ' ', ' ', $title );
}
// .title CSS class used in warehouse.js to determine document.title.
if ( $link )
{
$block_table = '<h3' . ( $selected ? ' class="title h3selected"' : '' ) . '>
<a href="' . URLEscape( $link ) . '">'
. _( $title )
. '</a>
</h3>';
}
else
$block_table = '<h3 class="title' . ( $selected ? ' h3selected' : '' ) . '">' . $title . '</h3>';
return $block_table;
}