GhostManSec
Server: LiteSpeed
System: Linux premium117.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: eblama1 (1214)
PHP: 8.2.30
Disabled: NONE
Upload Files
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( ' ', '&nbsp;', $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;
}