/** * Class iTopWebPage * * @copyright Copyright (C) 2010-2017 Combodo SARL * @license http://opensource.org/licenses/AGPL-3.0 */ require_once(APPROOT."/application/nicewebpage.class.inc.php"); require_once(APPROOT."/application/applicationcontext.class.inc.php"); require_once(APPROOT."/application/user.preferences.class.inc.php"); /** * Web page with some associated CSS and scripts (jquery) for a fancier display */ class iTopWebPage extends NiceWebPage implements iTabbedPage { private $m_sMenu; // private $m_currentOrganization; private $m_aMessages; private $m_sInitScript; protected $m_oTabs; protected $bBreadCrumbEnabled; protected $sBreadCrumbEntryId; protected $sBreadCrumbEntryLabel; protected $sBreadCrumbEntryDescription; protected $sBreadCrumbEntryUrl; protected $sBreadCrumbEntryIcon; protected $oCtx; public function __construct($sTitle, $bPrintable = false) { parent::__construct($sTitle, $bPrintable); $this->m_oTabs = new TabManager(); $this->oCtx = new ContextTag('GUI:Console'); ApplicationContext::SetUrlMakerClass('iTopStandardURLMaker'); if ((count($_POST) == 0) || (array_key_exists('loginop', $_POST))) { // Create a breadcrumb entry for the current page, but get its title as late as possible (page title could be changed later) $this->bBreadCrumbEnabled = true; } else { $this->bBreadCrumbEnabled = false; } utils::InitArchiveMode(); $this->m_sMenu = ""; $this->m_aMessages = array(); $this->SetRootUrl(utils::GetAbsoluteUrlAppRoot()); $this->add_header("Content-type: text/html; charset=utf-8"); $this->add_header("Cache-control: no-cache"); $this->add_linked_stylesheet("../css/jquery.treeview.css"); $this->add_linked_stylesheet("../css/jquery.autocomplete.css"); $this->add_linked_stylesheet("../css/jquery-ui-timepicker-addon.css"); $this->add_linked_stylesheet("../css/fg.menu.css"); $this->add_linked_stylesheet("../css/jquery.multiselect.css"); $this->add_linked_stylesheet("../css/magnific-popup.css"); $this->add_linked_stylesheet("../css/c3.min.css"); $this->add_linked_stylesheet("../css/font-awesome/css/font-awesome.min.css"); $this->add_linked_script('../js/jquery.layout.min.js'); $this->add_linked_script('../js/jquery.ba-bbq.min.js'); $this->add_linked_script("../js/jquery.treeview.js"); $this->add_linked_script("../js/jquery.autocomplete.js"); $this->add_linked_script("../js/date.js"); $this->add_linked_script("../js/jquery-ui-timepicker-addon.js"); $this->add_linked_script("../js/jquery-ui-timepicker-addon-i18n.min.js"); $this->add_linked_script("../js/jquery.blockUI.js"); $this->add_linked_script("../js/utils.js"); $this->add_linked_script("../js/swfobject.js"); $this->add_linked_script("../js/ckeditor/ckeditor.js"); $this->add_linked_script("../js/ckeditor/adapters/jquery.js"); $this->add_linked_script("../js/jquery.qtip-1.0.min.js"); $this->add_linked_script('../js/property_field.js'); $this->add_linked_script('../js/fg.menu.js'); $this->add_linked_script('../js/icon_select.js'); $this->add_linked_script('../js/raphael-min.js'); $this->add_linked_script('../js/d3.js'); $this->add_linked_script('../js/c3.js'); $this->add_linked_script('../js/jquery.multiselect.js'); $this->add_linked_script('../js/ajaxfileupload.js'); $this->add_linked_script('../js/jquery.mousewheel.js'); $this->add_linked_script('../js/jquery.magnific-popup.min.js'); $this->add_linked_script('../js/breadcrumb.js'); $this->add_linked_script('../js/moment.min.js'); $sSearchAny = addslashes(Dict::S('UI:SearchValue:Any')); $sSearchNbSelected = addslashes(Dict::S('UI:SearchValue:NbSelected')); $this->add_dict_entry('UI:FillAllMandatoryFields'); $this->add_dict_entry('UI:Button:Cancel'); $this->add_dict_entry('UI:Button:Done'); if (!$this->IsPrintableVersion()) { $this->PrepareLayout(); $this->add_script( <<Get('demo_mode')) { // Leave the pane opened } else { if (utils::ReadParam('force_menu_pane', null) === 0) { $bLeftPaneOpen = false; } elseif (appUserPreferences::GetPref('menu_pane', 'open') == 'closed') { $bLeftPaneOpen = false; } } return $bLeftPaneOpen; } protected function PrepareLayout() { if (MetaModel::GetConfig()->Get('demo_mode')) { // No pin button $sConfigureWestPane = ''; } else { $sConfigureWestPane = <<IsMenuPaneVisible() ? '' : 'initClosed: true,'; $sJSDisconnectedMessage = json_encode(Dict::S('UI:DisconnectedDlgMessage')); $sJSTitle = json_encode(Dict::S('UI:DisconnectedDlgTitle')); $sJSLoginAgain = json_encode(Dict::S('UI:LoginAgain')); $sJSStayOnThePage = json_encode(Dict::S('UI:StayOnThePage')); $aDaysMin = array(Dict::S('DayOfWeek-Sunday-Min'), Dict::S('DayOfWeek-Monday-Min'), Dict::S('DayOfWeek-Tuesday-Min'), Dict::S('DayOfWeek-Wednesday-Min'), Dict::S('DayOfWeek-Thursday-Min'), Dict::S('DayOfWeek-Friday-Min'), Dict::S('DayOfWeek-Saturday-Min')); $aMonthsShort = array(Dict::S('Month-01-Short'), Dict::S('Month-02-Short'), Dict::S('Month-03-Short'), Dict::S('Month-04-Short'), Dict::S('Month-05-Short'), Dict::S('Month-06-Short'), Dict::S('Month-07-Short'), Dict::S('Month-08-Short'), Dict::S('Month-09-Short'), Dict::S('Month-10-Short'), Dict::S('Month-11-Short'), Dict::S('Month-12-Short')); $sTimeFormat = AttributeDateTime::GetFormat()->ToTimeFormat(); $oTimeFormat = new DateTimeFormat($sTimeFormat); $sJSLangShort = json_encode(strtolower(substr(Dict::GetUserLanguage(), 0, 2))); // Date picker options $aPickerOptions = array( 'showOn' => 'button', 'buttonImage' => '../images/calendar.png', 'buttonImageOnly' => true, 'dateFormat' => AttributeDate::GetFormat()->ToDatePicker(), 'constrainInput' => false, 'changeMonth' => true, 'changeYear' => true, 'dayNamesMin' => $aDaysMin, 'monthNamesShort' => $aMonthsShort, 'firstDay' => (int) Dict::S('Calendar-FirstDayOfWeek'), ); $sJSDatePickerOptions = json_encode($aPickerOptions); // Time picker additional options $aPickerOptions['showOn'] = ''; $aPickerOptions['buttonImage'] = null; $aPickerOptions['timeFormat'] = $oTimeFormat->ToDatePicker(); $aPickerOptions['controlType'] = 'select'; $aPickerOptions['closeText'] = Dict::S('UI:Button:Ok'); $sJSDateTimePickerOptions = json_encode($aPickerOptions); if ($sJSLangShort != '"en"') { // More options that cannot be passed via json_encode since they must be evaluated client-side $aMoreJSOptions = ", 'timeText': $.timepicker.regional[$sJSLangShort].timeText, 'hourText': $.timepicker.regional[$sJSLangShort].hourText, 'minuteText': $.timepicker.regional[$sJSLangShort].minuteText, 'secondText': $.timepicker.regional[$sJSLangShort].secondText, 'currentText': $.timepicker.regional[$sJSLangShort].currentText }"; $sJSDateTimePickerOptions = substr($sJSDateTimePickerOptions, 0, -1).$aMoreJSOptions; } $this->add_script( <<< EOF function PrepareWidgets() { // note: each action implemented here must be idempotent, // because this helper function might be called several times on a given page $(".date-pick").datepicker($sJSDatePickerOptions); // Hack for the date and time picker addon issue on Chrome (see #1305) // The workaround is to instantiate the widget on demand // It relies on the same markup, thus reverting to the original implementation should be straightforward $(".datetime-pick:not(.is-widget-ready)").each(function(){ var oInput = this; $(oInput).addClass('is-widget-ready'); $('') .insertAfter($(this)) .on('click', function(){ $(oInput) .datetimepicker($sJSDateTimePickerOptions) .datetimepicker('show') .datetimepicker('option', 'onClose', function(dateText,inst){ $(oInput).datetimepicker('destroy'); }) .on('click keypress', function(){ $(oInput).datetimepicker('hide'); }); }); }); } EOF ); $this->m_sInitScript = <<< EOF try { var myLayout; // a var is required because this page utilizes: myLayout.allowOverflow() method // Layout paneSize = GetUserPreference('menu_size', 300) myLayout = $('body').layout({ west : { $sInitClosed minSize: 200, size: paneSize, spacing_open: 16, spacing_close: 16, slideTrigger_open: "click", hideTogglerOnSlide: true, enableCursorHotkey: false, onclose_end: function(name, elt, state, options, layout) { if (state.isSliding == false) { $('.menu-pane-exclusive').show(); SetUserPreference('menu_pane', 'closed', true); } }, onresize_end: function(name, elt, state, options, layout) { if (state.isSliding == false) { SetUserPreference('menu_size', state.size, true); } }, onopen_end: function(name, elt, state, options, layout) { if (state.isSliding == false) { $('.menu-pane-exclusive').hide(); SetUserPreference('menu_pane', 'open', true); } } }, center: { onresize_end: function(name, elt, state, options, layout) { $('.v-resizable').each( function() { var fixedWidth = $(this).parent().innerWidth() - 6; $(this).width(fixedWidth); // Make sure it cannot be resized horizontally $(this).resizable('options', { minWidth: fixedWidth, maxWidth: fixedWidth }); // Now adjust all the child 'items' var innerWidth = $(this).innerWidth() - 10; $(this).find('.item').width(innerWidth); }); $('.panel-resized').trigger('resized'); } } }); window.clearTimeout(iPaneVisWatchDog); //myLayout.open( "west" ); $('.ui-layout-resizer-west .ui-layout-toggler').css({background: 'transparent'}); $sConfigureWestPane $('#left-pane').layout({ resizable: false, spacing_open: 0, south: { size: 94 }, enableCursorHotkey: false }); // Tabs, using JQuery BBQ to store the history // The "tab widgets" to handle. var tabs = $('div[id^=tabbedContent]'); // This selector will be reused when selecting actual tab widget A elements. var tab_a_selector = 'ul.ui-tabs-nav a'; // Ugly patch for a change in the behavior of jQuery UI: // Before jQuery UI 1.9, tabs were always considered as "local" (opposed to Ajax) // when their href was beginning by #. Starting with 1.9, a tag in the page // is taken into account and causes "local" tabs to be considered as Ajax // unless their URL is equal to the URL of the page... $('div[id^=tabbedContent] > ul > li > a').each(function() { var sHash = location.hash; var sHref = $(this).attr("href"); if (sHref.match(/^#/)) { var sCleanLocation = location.href.toString().replace(sHash, '').replace(/#$/, ''); $(this).attr("href", sCleanLocation+$(this).attr("href")); } }); // Enable tabs on all tab widgets. The `event` property must be overridden so // that the tabs aren't changed on click, and any custom event name can be // specified. Note that if you define a callback for the 'select' event, it // will be executed for the selected tab whenever the hash changes. tabs.tabs({ event: 'change', 'show': function(event, ui) { $('.resizable', ui.panel).resizable(); // Make resizable everything that claims to be resizable ! }, beforeLoad: function( event, ui ) { if ( ui.tab.data('loaded') && (ui.tab.attr('data-cache') == 'true')) { event.preventDefault(); return; } ui.panel.html('
'); ui.jqXHR.success(function() { ui.tab.data( "loaded", true ); }); } }); $('.resizable').filter(':visible').resizable(); } catch(err) { // Do something with the error ! alert(err); } EOF ; $this->add_ready_script( <<< EOF // Adjust initial size $('.v-resizable').each( function() { var parent_id = $(this).parent().id; // Restore the saved height var iHeight = GetUserPreference(parent_id+'_'+this.id+'_height', undefined); if (iHeight != undefined) { $(this).height(parseInt(iHeight, 10)); // Parse in base 10 !); } // Adjust the child 'item''s height and width to fit var container = $(this); var fixedWidth = container.parent().innerWidth() - 6; // Set the width to fit the parent $(this).width(fixedWidth); var headerHeight = $(this).find('.drag_handle').height(); // Now adjust the width and height of the child 'item' container.find('.item').height(container.innerHeight() - headerHeight - 12).width(fixedWidth - 10); } ); // Make resizable, vertically only everything that claims to be v-resizable ! $('.v-resizable').resizable( { handles: 's', minHeight: $(this).find('.drag_handle').height(), minWidth: $(this).parent().innerWidth() - 6, maxWidth: $(this).parent().innerWidth() - 6, stop: function() { // Adjust the content var container = $(this); var headerHeight = $(this).find('.drag_handle').height(); container.find('.item').height(container.innerHeight() - headerHeight - 12);//.width(container.innerWidth()); var parent_id = $(this).parent().id; SetUserPreference(parent_id+'_'+this.id+'_height', $(this).height(), true); // true => persistent } } ); // Tabs, using JQuery BBQ to store the history // The "tab widgets" to handle. var tabs = $('div[id^=tabbedContent]'); // This selector will be reused when selecting actual tab widget A elements. var tab_a_selector = 'ul.ui-tabs-nav a'; // Define our own click handler for the tabs, overriding the default. tabs.find( tab_a_selector ).click(function() { var state = {}; // Get the id of this tab widget. var id = $(this).closest( 'div[id^=tabbedContent]' ).attr( 'id' ); // Get the index of this tab. var idx = $(this).parent().prevAll().length; // Set the state! state[ id ] = idx; $.bbq.pushState( state ); }); // refresh the hash when the tab is changed (from a JS script) $('body').on( 'tabsactivate', '.ui-tabs', function(event, ui) { var state = {}; // Get the id of this tab widget. var id = $(ui.newTab).closest( 'div[id^=tabbedContent]' ).attr( 'id' ); // Get the index of this tab. var idx = $(ui.newTab).prevAll().length; // Set the state! state[ id ] = idx; $.bbq.pushState( state ); }); // Bind an event to window.onhashchange that, when the history state changes, // iterates over all tab widgets, changing the current tab as necessary. $(window).bind( 'hashchange', function(e) { // Iterate over all tab widgets. tabs.each(function() { // Get the index for this tab widget from the hash, based on the // appropriate id property. In jQuery 1.4, you should use e.getState() // instead of $.bbq.getState(). The second, 'true' argument coerces the // string value to a number. var idx = $.bbq.getState( this.id, true ) || 0; // Select the appropriate tab for this tab widget by triggering the custom // event specified in the .tabs() init above (you could keep track of what // tab each widget is on using .data, and only select a tab if it has // changed). $(this).find( tab_a_selector ).eq( idx ).triggerHandler( 'change' ); }); // Iterate over all truncated lists to find whether they are expanded or not $('a.truncated').each(function() { var state = $.bbq.getState( this.id, true ) || 'close'; if (state == 'open') { $(this).trigger('open'); } else { $(this).trigger('close'); } }); }); // Shortcut menu actions $('.actions_button a').click( function() { aMatches = /#(.*)$/.exec(window.location.href); if (aMatches != null) { currentHash = aMatches[1]; if ( /#(.*)$/.test(this.href)) { this.href = this.href.replace(/#(.*)$/, '#'+currentHash); } } }); // End of Tabs handling PrepareWidgets(); // Make sortable, everything that claims to be sortable $('.sortable').sortable( {axis: 'y', cursor: 'move', handle: '.drag_handle', stop: function() { if ($(this).hasClass('persistent')) { // remember the sort order for next time the page is loaded... sSerialized = $(this).sortable('serialize', {key: 'menu'}); var sTemp = sSerialized.replace(/menu=/g, ''); SetUserPreference(this.id+'_order', sTemp.replace(/&/g, ','), true); // true => persistent ! } } }); docWidth = $(document).width(); $('#ModalDlg').dialog({ autoOpen: false, modal: true, width: 0.8*docWidth }); // JQuery UI dialogs ShowDebug(); $('#logOffBtn>ul').popupmenu(); $('.caselog_header').click( function () { $(this).toggleClass('open').next('.caselog_entry,.caselog_entry_html').toggle(); }); $(document).ajaxSend(function(event, jqxhr, options) { jqxhr.setRequestHeader('X-Combodo-Ajax', 'true'); }); $(document).ajaxError(function(event, jqxhr, options) { if (jqxhr.status == 401) { $('
'+$sJSDisconnectedMessage+'
').dialog({ modal:true, title: $sJSTitle, close: function() { $(this).remove(); }, minWidth: 400, buttons: [ { text: $sJSLoginAgain, click: function() { window.location.href= GetAbsoluteUrlAppRoot()+'pages/UI.php' } }, { text: $sJSStayOnThePage, click: function() { $(this).dialog('close'); } } ] }); } }); EOF ); $this->add_ready_script(InlineImage::FixImagesWidth()); /* * Not used since the sorting of the tables is always performed server-side AttributeDateTime::InitTableSorter($this, 'custom_date_time'); AttributeDate::InitTableSorter($this, 'custom_date'); */ $sUserPrefs = appUserPreferences::GetAsJSON(); $this->add_script( << 0) { sToken = ''; if (sOwnershipToken != undefined) { sToken = '&token='+sOwnershipToken; } window.location.href = AddAppContext(GetAbsoluteUrlAppRoot()+'pages/UI.php?operation=release_lock_and_details&class='+sClass+'&id='+id+sToken); } else { window.location.href = sDefaultUrl; // Already contains the context... } } function BackToList(sClass) { window.location.href = AddAppContext(GetAbsoluteUrlAppRoot()+'pages/UI.php?operation=search_oql&oql_class='+sClass+'&oql_clause=WHERE id=0'); } function ShowDebug() { if ($('#rawOutput > div').html() != '') { $('#rawOutput').dialog( {autoOpen: true, modal:false, width: '80%'}); } } var oUserPreferences = $sUserPrefs; // For disabling the CKEditor at init time when the corresponding textarea is disabled ! CKEDITOR.plugins.add( 'disabler', { init : function( editor ) { editor.on( 'instanceReady', function(e) { e.removeListener(); $('#'+ editor.name).trigger('update'); }); } }); function FixPaneVis() { $('.ui-layout-center, .ui-layout-north, .ui-layout-south').css({display: 'block'}); } EOF ); } /** * @param string $sId Identifies the item, to search after it in the current breadcrumb * @param string $sLabel Label of the breadcrumb item * @param string $sDescription More information, displayed as a tooltip * @param string $sUrl Specify a URL if the current URL as perceived on the browser side is not relevant * @param string $sIcon Icon (relative or absolute) path that will be displayed next to the label */ public function SetBreadCrumbEntry($sId, $sLabel, $sDescription, $sUrl = '', $sIcon = '') { $this->bBreadCrumbEnabled = true; $this->sBreadCrumbEntryId = $sId; $this->sBreadCrumbEntryLabel = $sLabel; $this->sBreadCrumbEntryDescription = $sDescription; $this->sBreadCrumbEntryUrl = $sUrl; $this->sBreadCrumbEntryIcon = $sIcon; } /** * State that there will be no breadcrumb item for the current page */ public function DisableBreadCrumb() { $this->bBreadCrumbEnabled = false; $this->sBreadCrumbEntryId = null; $this->sBreadCrumbEntryLabel = null; $this->sBreadCrumbEntryDescription = null; $this->sBreadCrumbEntryUrl = null; $this->sBreadCrumbEntryIcon = null; } public function AddToMenu($sHtml) { $this->m_sMenu .= $sHtml; } public function GetSiloSelectionForm() { // List of visible Organizations $iCount = 0; $oSet = null; if (MetaModel::IsValidClass('Organization')) { // Display the list of *favorite* organizations... but keeping in mind what is the real number of organizations $aFavoriteOrgs = appUserPreferences::GetPref('favorite_orgs', null); $oSearchFilter = new DBObjectSearch('Organization'); $oSearchFilter->SetModifierProperty('UserRightsGetSelectFilter', 'bSearchMode', true); $oSet = new CMDBObjectSet($oSearchFilter); $iCount = $oSet->Count(); // total number of existing Orgs // Now get the list of Orgs to be displayed in the menu $oSearchFilter = DBObjectSearch::FromOQL(ApplicationMenu::GetFavoriteSiloQuery()); $oSearchFilter->SetModifierProperty('UserRightsGetSelectFilter', 'bSearchMode', true); if (!empty($aFavoriteOrgs)) { $oSearchFilter->AddCondition('id', $aFavoriteOrgs, 'IN'); } $oSet = new CMDBObjectSet($oSearchFilter); // List of favorite orgs } switch($iCount) { case 0: // No such dimension/silo => nothing to select $sHtml = '
'; break; case 1: // Only one possible choice... no selection, but display the value $oOrg = $oSet->Fetch(); $sHtml = '
'.$oOrg->GetName().'
'; $sHtml .= ''; break; default: $sHtml = ''; $oAppContext = new ApplicationContext(); $iCurrentOrganization = $oAppContext->GetCurrentValue('org_id'); $sHtml = '
'; $sHtml .= '
'; //
'; $sHtml .= ' '; $sHtml .= ' '.self::FilterXSS($sLogOffMenu).''; $sHtml .= ' '; $sHtml .= ' '; $sHtml .= ' '; // $sHtml .= ' '; // $sHtml .= '
'; $sHtml .= ' '; $sHtml .= '
'; $sHtml .= ' '; $sHtml .= self::FilterXSS($this->s_content); $sHtml .= ' '; $sHtml .= '
'; $sHtml .= ''; $sHtml .= $sSouthPane; // Add the captured output if (trim($s_captured_output) != "") { $sHtml .= "
".self::FilterXSS($s_captured_output)."
\n"; } $sHtml .= "
".self::FilterXSS($this->s_deferred_content)."
"; $sHtml .= "
Please wait...
\n"; // jqModal Window $sHtml .= "
"; $sHtml .= "
"; } else { $sHtml .= self::FilterXSS($this->s_content); } $sHtml .= "\n"; $sHtml .= "\n"; if ($this->GetOutputFormat() == 'html') { $oKPI = new ExecutionKPI(); echo $sHtml; $oKPI->ComputeAndReport('Echoing ('.round(strlen($sHtml) / 1024).' Kb)'); } else if ($this->GetOutputFormat() == 'pdf' && $this->IsOutputFormatAvailable('pdf') ) { if (@is_readable(APPROOT.'lib/MPDF/mpdf.php')) { require_once(APPROOT.'lib/MPDF/mpdf.php'); $oMPDF = new mPDF('c'); $oMPDF->mirroMargins = false; if ($this->a_base['href'] != '') { $oMPDF->setBasePath($this->a_base['href']); // Seems that the tag is not recognized by mPDF... } $oMPDF->showWatermarkText = true; if ($this->GetOutputOption('pdf', 'template_path')) { $oMPDF->setImportUse(); // Allow templates $oMPDF->SetDocTemplate ($this->GetOutputOption('pdf', 'template_path'), 1); } $oMPDF->WriteHTML($sHtml); $sOutputName = $this->s_title.'.pdf'; if ($this->GetOutputOption('pdf', 'output_name')) { $sOutputName = $this->GetOutputOption('pdf', 'output_name'); } $oMPDF->Output($sOutputName, 'I'); } } DBSearch::RecordQueryTrace(); ExecutionKPI::ReportStats(); } public function AddTabContainer($sTabContainer, $sPrefix = '') { $this->add($this->m_oTabs->AddTabContainer($sTabContainer, $sPrefix)); } public function AddToTab($sTabContainer, $sTabLabel, $sHtml) { $this->add($this->m_oTabs->AddToTab($sTabContainer, $sTabLabel, $sHtml)); } public function SetCurrentTabContainer($sTabContainer = '') { return $this->m_oTabs->SetCurrentTabContainer($sTabContainer); } public function SetCurrentTab($sTabLabel = '') { return $this->m_oTabs->SetCurrentTab($sTabLabel); } /** * Add a tab which content will be loaded asynchronously via the supplied URL * * Limitations: * Cross site scripting is not not allowed for security reasons. Use a normal tab with an IFRAME if you want to pull content from another server. * Static content cannot be added inside such tabs. * * @param string $sTabLabel The (localised) label of the tab * @param string $sUrl The URL to load (on the same server) * @param boolean $bCache Whether or not to cache the content of the tab once it has been loaded. flase will cause the tab to be reloaded upon each activation. * @since 2.0.3 */ public function AddAjaxTab($sTabLabel, $sUrl, $bCache = true) { $this->add($this->m_oTabs->AddAjaxTab($sTabLabel, $sUrl, $bCache)); } public function GetCurrentTab() { return $this->m_oTabs->GetCurrentTab(); } public function RemoveTab($sTabLabel, $sTabContainer = null) { $this->m_oTabs->RemoveTab($sTabLabel, $sTabContainer); } /** * Finds the tab whose title matches a given pattern * @return mixed The name of the tab as a string or false if not found */ public function FindTab($sPattern, $sTabContainer = null) { return $this->m_oTabs->FindTab($sPattern, $sTabContainer); } /** * Make the given tab the active one, as if it were clicked * DOES NOT WORK: apparently in the *old* version of jquery * that we are using this is not supported... TO DO upgrade * the whole jquery bundle... */ public function SelectTab($sTabContainer, $sTabLabel) { $this->add_ready_script($this->m_oTabs->SelectTab($sTabContainer, $sTabLabel)); } public function StartCollapsibleSection($sSectionLabel, $bOpen = false) { $this->add($this->GetStartCollapsibleSection($sSectionLabel, $bOpen)); } public function GetStartCollapsibleSection($sSectionLabel, $bOpen = false) { $sHtml = ''; static $iSectionId = 0; $sImgStyle = $bOpen ? ' open' : ''; $sHtml .= "
$sSectionLabel
\n"; $sStyle = $bOpen ? '' : 'style="display:none" '; $sHtml .= "
"; $this->add_ready_script("\$(\"#LnkCollapse_$iSectionId\").click(function() {\$(\"#Collapse_$iSectionId\").slideToggle('normal'); $(\"#LnkCollapse_$iSectionId\").toggleClass('open');});"); //$this->add_ready_script("$('#LnkCollapse_$iSectionId').hide();"); $iSectionId++; return $sHtml; } public function EndCollapsibleSection() { $this->add($this->GetEndCollapsibleSection()); } public function GetEndCollapsibleSection() { return "
"; } public function add($sHtml) { if (($this->m_oTabs->GetCurrentTabContainer() != '') && ($this->m_oTabs->GetCurrentTab() != '')) { $this->m_oTabs->AddToCurrentTab($sHtml); } else { parent::add($sHtml); } } /** * Records the current state of the 'html' part of the page output * @return mixed The current state of the 'html' output */ public function start_capture() { $sCurrentTabContainer = $this->m_oTabs->GetCurrentTabContainer(); $sCurrentTab = $this->m_oTabs->GetCurrentTab(); if (!empty($sCurrentTabContainer) && !empty($sCurrentTab)) { $iOffset = $this->m_oTabs->GetCurrentTabLength(); return array('tc' => $sCurrentTabContainer, 'tab' => $sCurrentTab, 'offset' => $iOffset); } else { return parent::start_capture(); } } /** * Returns the part of the html output that occurred since the call to start_capture * and removes this part from the current html output * @param $offset mixed The value returned by start_capture * @return string The part of the html output that was added since the call to start_capture */ public function end_capture($offset) { if (is_array($offset)) { if ($this->m_oTabs->TabExists($offset['tc'], $offset['tab'])) { $sCaptured = $this->m_oTabs->TruncateTab($offset['tc'], $offset['tab'], $offset['offset']); } else { $sCaptured = ''; } } else { $sCaptured = parent::end_capture($offset); } return $sCaptured; } /** * Set the message to be displayed in the 'app-banner' section at the top of the page */ public function SetMessage($sHtmlMessage) { $sHtmlIcon = ''; $this->AddApplicationMessage($sHtmlMessage, $sHtmlIcon); } /** * Add message to be displayed in the 'app-banner' section at the top of the page */ public function AddApplicationMessage($sHtmlMessage, $sHtmlIcon = null, $sTip = null) { if (strlen($sHtmlMessage)) { $this->m_aMessages[] = array( 'icon' => $sHtmlIcon, 'message' => $sHtmlMessage, 'tip' => $sTip ); } } }