/
var
/
www
/
html
/
freshsugar25
/
include
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ class SugarWidgetTabs { public $jscallback; public $tabs; public $current_key; public function __construct(&$tabs, $current_key, $jscallback) { $this->tabs = $tabs; $this->current_key = $current_key; $this->jscallback = $jscallback; } /** * @return string */ public function display() { ob_start(); ?> <script> var keys = [ <?php $tabs_count = safeCount($this->tabs); for ($i = 0; $i < $tabs_count; $i++) { $tab = $this->tabs[$i]; echo '"' . $tab['key'] . '"'; if ($tabs_count > ($i + 1)) { echo ','; } } ?>]; tabPreviousKey = ''; function selectTabCSS(key) { for (var i = 0; i < keys.length; i++) { var liclass = ''; var linkclass = ''; if (key == keys[i]) { var liclass = 'active'; var linkclass = 'current'; } document.getElementById('tab_li_' + keys[i]).className = liclass; document.getElementById('tab_link_' + keys[i]).className = linkclass; } <?php echo $this->jscallback;?>(key, tabPreviousKey); tabPreviousKey = key; } </script> <ul id="searchTabs" class="tablist"> <?php foreach ($this->tabs as $tab) { $TITLE = $tab['title']; $LI_ID = ''; $A_ID = ''; if (!empty($tab['hidden']) && $tab['hidden'] == true) { $LI_ID = 'style="display: none"'; $A_ID = 'style="display: none"'; } elseif ($this->current_key == $tab['key']) { $LI_ID = 'class="active"'; $A_ID = 'class="current"'; } $LINK = "<li $LI_ID id=\"tab_li_" . $tab['link'] . "\"><a $A_ID id=\"tab_link_" . $tab['link'] . "\" href=\"javascript:selectTabCSS('{$tab['link']}');\">$TITLE</a></li>"; ?> <?php echo $LINK; ?> <?php } ?> </ul> <?php $ob_contents = ob_get_contents(); ob_end_clean(); return $ob_contents; } }