itopwebpage.class.inc.php 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. /**
  17. * Class iTopWebPage
  18. *
  19. * @author Erwan Taloc <erwan.taloc@combodo.com>
  20. * @author Romain Quetiez <romain.quetiez@combodo.com>
  21. * @author Denis Flaven <denis.flaven@combodo.com>
  22. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  23. */
  24. require_once(APPROOT."/application/nicewebpage.class.inc.php");
  25. require_once(APPROOT."/application/applicationcontext.class.inc.php");
  26. require_once(APPROOT."/application/user.preferences.class.inc.php");
  27. /**
  28. * Web page with some associated CSS and scripts (jquery) for a fancier display
  29. */
  30. class iTopWebPage extends NiceWebPage
  31. {
  32. private $m_sMenu;
  33. // private $m_currentOrganization;
  34. private $m_aTabs;
  35. private $m_sCurrentTabContainer;
  36. private $m_sCurrentTab;
  37. private $m_sMessage;
  38. private $m_sInitScript;
  39. public function __construct($sTitle)
  40. {
  41. parent::__construct($sTitle);
  42. ApplicationContext::SetUrlMakerClass('iTopStandardURLMaker');
  43. $this->m_sCurrentTabContainer = '';
  44. $this->m_sCurrentTab = '';
  45. $this->m_aTabs = array();
  46. $this->m_sMenu = "";
  47. $this->m_sMessage = '';
  48. $this->SetRootUrl(utils::GetAbsoluteUrlAppRoot());
  49. $this->add_header("Content-type: text/html; charset=utf-8");
  50. $this->add_header("Cache-control: no-cache");
  51. $this->add_linked_stylesheet("../css/jquery.treeview.css");
  52. $this->add_linked_stylesheet("../css/jquery.autocomplete.css");
  53. $this->add_linked_script('../js/jquery.layout.min.js');
  54. $this->add_linked_script('../js/jquery.ba-bbq.min.js');
  55. $this->add_linked_script("../js/jquery.treeview.js");
  56. $this->add_linked_script("../js/jquery.autocomplete.js");
  57. $this->add_linked_script("../js/jquery.positionBy.js");
  58. $this->add_linked_script("../js/jquery.popupmenu.js");
  59. $this->add_linked_script("../js/date.js");
  60. $this->add_linked_script("../js/jquery.blockUI.js");
  61. $this->add_linked_script("../js/utils.js");
  62. $this->add_linked_script("../js/swfobject.js");
  63. $this->add_linked_script("../js/ckeditor/ckeditor.js");
  64. $this->add_linked_script("../js/ckeditor/adapters/jquery.js");
  65. $this->add_linked_script("../js/jquery.qtip-1.0.min.js");
  66. $this->m_sInitScript =
  67. <<< EOF
  68. try
  69. {
  70. var myLayout; // a var is required because this page utilizes: myLayout.allowOverflow() method
  71. // Layout
  72. paneSize = GetUserPreference('menu_size', 300)
  73. myLayout = $('body').layout({
  74. west : {
  75. minSize: 200, size: paneSize, spacing_open: 16, spacing_close: 16, slideTrigger_open: "mouseover", hideTogglerOnSlide: true,
  76. onclose_end: function(name, elt, state, options, layout)
  77. {
  78. if (state.isSliding == false)
  79. {
  80. SetUserPreference('menu_pane', 'closed', true);
  81. }
  82. },
  83. onresize_end: function(name, elt, state, options, layout)
  84. {
  85. if (state.isSliding == false)
  86. {
  87. SetUserPreference('menu_size', state.size, true);
  88. }
  89. },
  90. onopen_end: function(name, elt, state, options, layout)
  91. {
  92. if (state.isSliding == false)
  93. {
  94. SetUserPreference('menu_pane', 'open', true);
  95. }
  96. }
  97. },
  98. center: {
  99. onresize_end: function(name, elt, state, options, layout)
  100. {
  101. $('.v-resizable').each( function() {
  102. var fixedWidth = $(this).parent().innerWidth() - 6;
  103. $(this).width(fixedWidth);
  104. // Make sure it cannot be resized horizontally
  105. $(this).resizable('options', { minWidth: fixedWidth, maxWidth: fixedWidth });
  106. // Now adjust all the child 'items'
  107. var innerWidth = $(this).innerWidth() - 10;
  108. $(this).find('.item').width(innerWidth);
  109. });
  110. }
  111. }
  112. });
  113. myLayout.addPinBtn( "#tPinMenu", "west" );
  114. //myLayout.open( "west" );
  115. $('.ui-layout-resizer-west').html('<img src="../images/splitter-top-corner.png"/>');
  116. if (GetUserPreference('menu_pane', 'open') == 'closed')
  117. {
  118. myLayout.close('west');
  119. }
  120. // Accordion Menu
  121. $("#accordion").accordion({ header: "h3", navigation: true, autoHeight: false, collapsible: false, icons: false }); // collapsible will be enabled once the item will be selected
  122. // Tabs, using JQuery BBQ to store the history
  123. // The "tab widgets" to handle.
  124. var tabs = $('div[id^=tabbedContent]');
  125. // This selector will be reused when selecting actual tab widget A elements.
  126. var tab_a_selector = 'ul.ui-tabs-nav a';
  127. // Enable tabs on all tab widgets. The `event` property must be overridden so
  128. // that the tabs aren't changed on click, and any custom event name can be
  129. // specified. Note that if you define a callback for the 'select' event, it
  130. // will be executed for the selected tab whenever the hash changes.
  131. tabs.tabs({ event: 'change', 'show': function(event, ui) {
  132. $('.resizable', ui.panel).resizable(); // Make resizable everything that claims to be resizable !
  133. }
  134. });
  135. $('.resizable').filter(':visible').resizable();
  136. }
  137. catch(err)
  138. {
  139. // Do something with the error !
  140. alert(err);
  141. }
  142. EOF
  143. ;
  144. $this->add_ready_script(
  145. <<< EOF
  146. // Adjust initial size
  147. $('.v-resizable').each( function()
  148. {
  149. var parent_id = $(this).parent().id;
  150. // Restore the saved height
  151. var iHeight = GetUserPreference(parent_id+'_'+this.id+'_height', undefined);
  152. if (iHeight != undefined)
  153. {
  154. $(this).height(parseInt(iHeight, 10)); // Parse in base 10 !);
  155. }
  156. // Adjust the child 'item''s height and width to fit
  157. var container = $(this);
  158. var fixedWidth = container.parent().innerWidth() - 6;
  159. // Set the width to fit the parent
  160. $(this).width(fixedWidth);
  161. var headerHeight = $(this).find('.drag_handle').height();
  162. // Now adjust the width and height of the child 'item'
  163. container.find('.item').height(container.innerHeight() - headerHeight - 12).width(fixedWidth - 10);
  164. }
  165. );
  166. // Make resizable, vertically only everything that claims to be v-resizable !
  167. $('.v-resizable').resizable( { handles: 's', minHeight: $(this).find('.drag_handle').height(), minWidth: $(this).parent().innerWidth() - 6, maxWidth: $(this).parent().innerWidth() - 6, stop: function()
  168. {
  169. // Adjust the content
  170. var container = $(this);
  171. var headerHeight = $(this).find('.drag_handle').height();
  172. container.find('.item').height(container.innerHeight() - headerHeight - 12);//.width(container.innerWidth());
  173. var parent_id = $(this).parent().id;
  174. SetUserPreference(parent_id+'_'+this.id+'_height', $(this).height(), true); // true => persistent
  175. }
  176. } );
  177. // Tabs, using JQuery BBQ to store the history
  178. // The "tab widgets" to handle.
  179. var tabs = $('div[id^=tabbedContent]');
  180. // This selector will be reused when selecting actual tab widget A elements.
  181. var tab_a_selector = 'ul.ui-tabs-nav a';
  182. // Define our own click handler for the tabs, overriding the default.
  183. tabs.find( tab_a_selector ).click(function()
  184. {
  185. var state = {};
  186. // Get the id of this tab widget.
  187. var id = $(this).closest( 'div[id^=tabbedContent]' ).attr( 'id' );
  188. // Get the index of this tab.
  189. var idx = $(this).parent().prevAll().length;
  190. // Set the state!
  191. state[ id ] = idx;
  192. $.bbq.pushState( state );
  193. });
  194. // Bind an event to window.onhashchange that, when the history state changes,
  195. // iterates over all tab widgets, changing the current tab as necessary.
  196. $(window).bind( 'hashchange', function(e)
  197. {
  198. // Iterate over all tab widgets.
  199. tabs.each(function()
  200. {
  201. // Get the index for this tab widget from the hash, based on the
  202. // appropriate id property. In jQuery 1.4, you should use e.getState()
  203. // instead of $.bbq.getState(). The second, 'true' argument coerces the
  204. // string value to a number.
  205. var idx = $.bbq.getState( this.id, true ) || 0;
  206. // Select the appropriate tab for this tab widget by triggering the custom
  207. // event specified in the .tabs() init above (you could keep track of what
  208. // tab each widget is on using .data, and only select a tab if it has
  209. // changed).
  210. $(this).find( tab_a_selector ).eq( idx ).triggerHandler( 'change' );
  211. });
  212. // Iterate over all truncated lists to find whether they are expanded or not
  213. $('a.truncated').each(function()
  214. {
  215. var state = $.bbq.getState( this.id, true ) || 'close';
  216. if (state == 'open')
  217. {
  218. $(this).trigger('open');
  219. }
  220. else
  221. {
  222. $(this).trigger('close');
  223. }
  224. });
  225. });
  226. // Shortcut menu actions
  227. $('.actions_button a').click( function() {
  228. aMatches = /#(.*)$/.exec(window.location.href);
  229. if (aMatches != null)
  230. {
  231. currentHash = aMatches[1];
  232. if ( /#(.*)$/.test(this.href))
  233. {
  234. this.href = this.href.replace(/#(.*)$/, '#'+currentHash);
  235. }
  236. }
  237. });
  238. // End of Tabs handling
  239. $(".date-pick").datepicker({
  240. showOn: 'button',
  241. buttonImage: '../images/calendar.png',
  242. buttonImageOnly: true,
  243. dateFormat: 'yy-mm-dd',
  244. constrainInput: false,
  245. changeMonth: true,
  246. changeYear: true
  247. });
  248. $(".datetime-pick").datepicker({
  249. showOn: 'button',
  250. buttonImage: '../images/calendar.png',
  251. buttonImageOnly: true,
  252. dateFormat: 'yy-mm-dd 00:00:00',
  253. constrainInput: false,
  254. changeMonth: true,
  255. changeYear: true
  256. });
  257. // Restore the persisted sortable order, for all sortable lists... if any
  258. $('.sortable').each(function()
  259. {
  260. var sTemp = GetUserPreference(this.id+'_order', undefined);
  261. if (sTemp != undefined)
  262. {
  263. var aSerialized = sTemp.split(',');
  264. var sortable = $(this);
  265. $.each(aSerialized, function(i,v) {
  266. var item = $('#menu_'+v);
  267. if (item.length > 0) // Check that the menu exists
  268. {
  269. sortable.append(item);
  270. }
  271. });
  272. }
  273. });
  274. // Make sortable, everything that claims to be sortable
  275. $('.sortable').sortable( {axis: 'y', cursor: 'move', handle: '.drag_handle', stop: function()
  276. {
  277. if ($(this).hasClass('persistent'))
  278. {
  279. // remember the sort order for next time the page is loaded...
  280. sSerialized = $(this).sortable('serialize', {key: 'menu'});
  281. var sTemp = sSerialized.replace(/menu=/g, '');
  282. SetUserPreference(this.id+'_order', sTemp.replace(/&/g, ','), true); // true => persistent !
  283. }
  284. }
  285. });
  286. docWidth = $(document).width();
  287. $('#ModalDlg').dialog({ autoOpen: false, modal: true, width: 0.8*docWidth }); // JQuery UI dialogs
  288. ShowDebug();
  289. $('#logOffBtn>ul').popupmenu();
  290. $('.caselog_header').click( function () { $(this).toggleClass('open').next('.caselog_entry').toggle(); });
  291. EOF
  292. );
  293. $sUserPrefs = appUserPreferences::GetAsJSON();
  294. $this->add_script(
  295. <<<EOF
  296. // // for JQuery history
  297. // function history_callback(hash)
  298. // {
  299. // // do stuff that loads page content based on hash variable
  300. // var aMatches = /^tab_(.*)$/.exec(hash);
  301. // if (aMatches != null)
  302. // {
  303. // var tab = $('#'+hash);
  304. // tab.parents('div[id^=tabbedContent]:first').tabs('select', aMatches[1]);
  305. // }
  306. // }
  307. function goBack()
  308. {
  309. window.history.back();
  310. }
  311. function BackToDetails(sClass, id, sDefaultUrl)
  312. {
  313. window.bInCancel = true;
  314. if (id > 0)
  315. {
  316. window.location.href = AddAppContext(GetAbsoluteUrlAppRoot()+'pages/UI.php?operation=details&class='+sClass+'&id='+id);
  317. }
  318. else
  319. {
  320. window.location.href = sDefaultUrl; // Already contains the context...
  321. }
  322. }
  323. function BackToList(sClass)
  324. {
  325. window.location.href = AddAppContext(GetAbsoluteUrlAppRoot()+'pages/UI.php?operation=search_oql&oql_class='+sClass+'&oql_clause=WHERE id=0');
  326. }
  327. function ShowDebug()
  328. {
  329. if ($('#rawOutput > div').html() != '')
  330. {
  331. $('#rawOutput').dialog( {autoOpen: true, modal:false});
  332. }
  333. }
  334. var oUserPreferences = $sUserPrefs;
  335. // For disabling the CKEditor at init time when the corresponding textarea is disabled !
  336. CKEDITOR.plugins.add( 'disabler',
  337. {
  338. init : function( editor )
  339. {
  340. editor.on( 'instanceReady', function(e)
  341. {
  342. e.removeListener();
  343. $('#'+ editor.name).trigger('update');
  344. });
  345. }
  346. });
  347. EOF
  348. );
  349. // Build menus from module handlers
  350. //
  351. foreach(get_declared_classes() as $sPHPClass)
  352. {
  353. if (is_subclass_of($sPHPClass, 'ModuleHandlerAPI'))
  354. {
  355. $aCallSpec = array($sPHPClass, 'OnMenuCreation');
  356. call_user_func($aCallSpec);
  357. }
  358. }
  359. }
  360. public function AddToMenu($sHtml)
  361. {
  362. $this->m_sMenu .= $sHtml;
  363. }
  364. public function GetSiloSelectionForm()
  365. {
  366. // List of visible Organizations
  367. $iCount = 0;
  368. $oSet = null;
  369. if (MetaModel::IsValidClass('Organization'))
  370. {
  371. // Display the list of *favorite* organizations... but keeping in mind what is the real number of organizations
  372. $aFavoriteOrgs = appUserPreferences::GetPref('favorite_orgs', null);
  373. $oSearchFilter = new DBObjectSearch('Organization');
  374. $oSearchFilter->SetModifierProperty('UserRightsGetSelectFilter', 'bSearchMode', true);
  375. $oSet = new CMDBObjectSet($oSearchFilter);
  376. $iCount = $oSet->Count(); // total number of existing Orgs
  377. // Now get the list of Orgs to be displayed in the menu
  378. $oSearchFilter = DBObjectSearch::FromOQL(ApplicationMenu::GetFavoriteSiloQuery());
  379. $oSearchFilter->SetModifierProperty('UserRightsGetSelectFilter', 'bSearchMode', true);
  380. if (!empty($aFavoriteOrgs))
  381. {
  382. $oSearchFilter->AddCondition('id', $aFavoriteOrgs, 'IN');
  383. }
  384. $oSet = new CMDBObjectSet($oSearchFilter); // List of favorite orgs
  385. }
  386. switch($iCount)
  387. {
  388. case 0:
  389. // No such dimension/silo => nothing to select
  390. $sHtml = '<div id="SiloSelection"><!-- nothing to select --></div>';
  391. break;
  392. case 1:
  393. // Only one possible choice... no selection, but display the value
  394. $oOrg = $oSet->Fetch();
  395. $sHtml = '<div id="SiloSelection">'.$oOrg->GetName().'</div>';
  396. $sHtml .= '';
  397. break;
  398. default:
  399. $sHtml = '';
  400. $oAppContext = new ApplicationContext();
  401. $iCurrentOrganization = $oAppContext->GetCurrentValue('org_id');
  402. $sHtml = '<div id="SiloSelection">';
  403. $sHtml .= '<form style="display:inline" action="'.utils::GetAbsoluteUrlAppRoot().'pages/UI.php">'; //<select class="org_combo" name="c[org_id]" title="Pick an organization" onChange="this.form.submit();">';
  404. $sFavoriteOrgs = '';
  405. $oWidget = new UIExtKeyWidget('Organization', 'org_id', '', true /* search mode */);
  406. $sHtml .= $oWidget->Display($this, 50, false, '', $oSet, $iCurrentOrganization, 'org_id', false, 'c[org_id]', '', array('iFieldSize' => 20, 'iMinChars' => MetaModel::GetConfig()->Get('min_autocomplete_chars'), 'sDefaultValue' => Dict::S('UI:AllOrganizations')));
  407. $this->add_ready_script('$("#org_id").bind("extkeychange", function() { $("#SiloSelection form").submit(); } )');
  408. $this->add_ready_script("$('#label_org_id').click( function() { $(this).val(''); $('#org_id').val(''); return true; } );\n");
  409. // Add other dimensions/context information to this form
  410. $oAppContext->Reset('org_id'); // org_id is handled above and we want to be able to change it here !
  411. $oAppContext->Reset('menu'); // don't pass the menu, since a menu may expect more parameters
  412. $sHtml .= $oAppContext->GetForForm(); // Pass what remains, if anything...
  413. $sHtml .= '</form>';
  414. $sHtml .= '</div>';
  415. }
  416. return $sHtml;
  417. }
  418. public function DisplayMenu()
  419. {
  420. // Display the menu
  421. $oAppContext = new ApplicationContext();
  422. $iAccordionIndex = 0;
  423. ApplicationMenu::DisplayMenu($this, $oAppContext->GetAsHash());
  424. }
  425. /**
  426. * Outputs (via some echo) the complete HTML page by assembling all its elements
  427. */
  428. public function output()
  429. {
  430. $sAbsURLAppRoot = addslashes($this->m_sRootUrl);
  431. $this->set_base($this->m_sRootUrl.'pages/');
  432. $sForm = $this->GetSiloSelectionForm();
  433. $this->DisplayMenu(); // Compute the menu
  434. // Put here the 'ready scripts' that must be executed after all others
  435. $this->add_ready_script(
  436. <<<EOF
  437. // Since the event is only triggered when the hash changes, we need to trigger
  438. // the event now, to handle the hash the page may have loaded with.
  439. $(window).trigger( 'hashchange' );
  440. // Some table are sort-able, some are not, let's fix this
  441. $('table.listResults').each( function() { FixTableSorter($(this)); } );
  442. EOF
  443. );
  444. if ($this->GetOutputFormat() == 'html')
  445. {
  446. foreach($this->a_headers as $s_header)
  447. {
  448. header($s_header);
  449. }
  450. }
  451. $s_captured_output = ob_get_contents();
  452. ob_end_clean();
  453. $sHtml = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
  454. $sHtml .= "<html>\n";
  455. $sHtml .= "<head>\n";
  456. // Make sure that Internet Explorer renders the page using its latest/highest/greatest standards !
  457. $sHtml .= "<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n";
  458. $sHtml .= "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
  459. $sHtml .= "<title>".htmlentities($this->s_title, ENT_QUOTES, 'UTF-8')."</title>\n";
  460. $sHtml .= $this->get_base_tag();
  461. // Stylesheets MUST be loaded before any scripts otherwise
  462. // jQuery scripts may face some spurious problems (like failing on a 'reload')
  463. foreach($this->a_linked_stylesheets as $a_stylesheet)
  464. {
  465. if ($a_stylesheet['condition'] != "")
  466. {
  467. $sHtml .= "<!--[if {$a_stylesheet['condition']}]>\n";
  468. }
  469. $sHtml .= "<link rel=\"stylesheet\" type=\"text/css\" href=\"{$a_stylesheet['link']}\" />\n";
  470. if ($a_stylesheet['condition'] != "")
  471. {
  472. $sHtml .= "<![endif]-->\n";
  473. }
  474. }
  475. // special stylesheet for printing, hides the navigation gadgets
  476. $sHtml .= "<link rel=\"stylesheet\" media=\"print\" type=\"text/css\" href=\"../css/print.css\" />\n";
  477. if ($this->GetOutputFormat() == 'html')
  478. {
  479. foreach($this->a_linked_scripts as $s_script)
  480. {
  481. // Make sure that the URL to the script contains the application's version number
  482. // so that the new script do NOT get reloaded from the cache when the application is upgraded
  483. if (strpos($s_script, '?') === false)
  484. {
  485. $s_script .= "?itopversion=".ITOP_VERSION;
  486. }
  487. else
  488. {
  489. $s_script .= "&itopversion=".ITOP_VERSION;
  490. }
  491. $sHtml .= "<script type=\"text/javascript\" src=\"$s_script\"></script>\n";
  492. }
  493. $this->add_script("\$(document).ready(function() {\n{$this->m_sInitScript};\nwindow.setTimeout('onDelayedReady()',10)\n});");
  494. if (count($this->m_aReadyScripts)>0)
  495. {
  496. $this->add_script("\nonDelayedReady = function() {\n".implode("\n", $this->m_aReadyScripts)."\n}\n");
  497. }
  498. if (count($this->a_scripts)>0)
  499. {
  500. $sHtml .= "<script type=\"text/javascript\">\n";
  501. foreach($this->a_scripts as $s_script)
  502. {
  503. $sHtml .= "$s_script\n";
  504. }
  505. $sHtml .= "</script>\n";
  506. }
  507. }
  508. if (count($this->a_styles)>0)
  509. {
  510. $sHtml .= "<style>\n";
  511. foreach($this->a_styles as $s_style)
  512. {
  513. $sHtml .= "$s_style\n";
  514. }
  515. $sHtml .= "</style>\n";
  516. }
  517. $sHtml .= "<link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"iTop\" href=\"".utils::GetAbsoluteUrlAppRoot()."pages/opensearch.xml.php\" />\n";
  518. $sHtml .= "<link rel=\"shortcut icon\" href=\"".utils::GetAbsoluteUrlAppRoot()."images/favicon.ico\" />\n";
  519. $sHtml .= "</head>\n";
  520. $sHtml .= "<body>\n";
  521. // Render the revision number
  522. if (ITOP_REVISION == '$WCREV$')
  523. {
  524. // This is NOT a version built using the buil system, just display the main version
  525. $sVersionString = Dict::Format('UI:iTopVersion:Short', ITOP_VERSION);
  526. }
  527. else
  528. {
  529. // This is a build made from SVN, let display the full information
  530. $sVersionString = Dict::Format('UI:iTopVersion:Long', ITOP_VERSION, ITOP_REVISION, ITOP_BUILD_DATE);
  531. }
  532. // Render the text of the global search form
  533. $sText = htmlentities(utils::ReadParam('text', '', false, 'raw_data'), ENT_QUOTES, 'UTF-8');
  534. $sOnClick = "";
  535. if (empty($sText))
  536. {
  537. // if no search text is supplied then
  538. // 1) the search text is filled with "your search"
  539. // 2) clicking on it will erase it
  540. $sText = Dict::S("UI:YourSearch");
  541. $sOnClick = " onclick=\"this.value='';this.onclick=null;\"";
  542. }
  543. // Render the tabs in the page (if any)
  544. foreach($this->m_aTabs as $sTabContainerName => $m_aTabs)
  545. {
  546. $sTabs = '';
  547. $container_index = 0;
  548. if (count($m_aTabs) > 0)
  549. {
  550. $sTabs = "<!-- tabs -->\n<div id=\"tabbedContent_{$container_index}\" class=\"light\">\n";
  551. $sTabs .= "<ul>\n";
  552. // Display the unordered list that will be rendered as the tabs
  553. $i = 0;
  554. foreach($m_aTabs as $sTabName => $sTabContent)
  555. {
  556. $sTabs .= "<li><a href=\"#tab_$i\" class=\"tab\"><span>".htmlentities($sTabName, ENT_QUOTES, 'UTF-8')."</span></a></li>\n";
  557. $i++;
  558. }
  559. $sTabs .= "</ul>\n";
  560. // Now add the content of the tabs themselves
  561. $i = 0;
  562. foreach($m_aTabs as $sTabName => $sTabContent)
  563. {
  564. $sTabs .= "<div id=\"tab_$i\">".$sTabContent."</div>\n";
  565. $i++;
  566. }
  567. $sTabs .= "</div>\n<!-- end of tabs-->\n";
  568. }
  569. $this->s_content = str_replace("\$Tabs:$sTabContainerName\$", $sTabs, $this->s_content);
  570. $container_index++;
  571. }
  572. if ($this->GetOutputFormat() == 'html')
  573. {
  574. $sUserName = UserRights::GetUser();
  575. $sIsAdmin = UserRights::IsAdministrator() ? '(Administrator)' : '';
  576. if (UserRights::IsAdministrator())
  577. {
  578. $sLogonMessage = Dict::Format('UI:LoggedAsMessage+Admin', $sUserName);
  579. }
  580. else
  581. {
  582. $sLogonMessage = Dict::Format('UI:LoggedAsMessage', $sUserName);
  583. }
  584. $sLogOffMenu = "<span id=\"logOffBtn\"><ul><li><img src=\"../images/onOffBtn.png\"><ul>";
  585. $sLogOffMenu .= "<li><span>$sLogonMessage</span></li>\n";
  586. $sLogOffMenu .= "<li><a href=\"".utils::GetAbsoluteUrlAppRoot()."pages/preferences.php\">".Dict::S('UI:Preferences')."</a></li>\n";
  587. if (utils::CanLogOff())
  588. {
  589. //$sLogOffMenu .= "<li><a href=\"../pages/UI.php?loginop=logoff\">".Dict::S('UI:LogOffMenu')."</a></li>\n";
  590. $sLogOffMenu .= "<li><a href=\"".utils::GetAbsoluteUrlAppRoot()."pages/logoff.php\">".Dict::S('UI:LogOffMenu')."</a></li>\n";
  591. }
  592. if (UserRights::CanChangePassword())
  593. {
  594. $sLogOffMenu .= "<li><a href=\"".utils::GetAbsoluteUrlAppRoot()."pages/UI.php?loginop=change_pwd\">".Dict::S('UI:ChangePwdMenu')."</a></li>\n";
  595. }
  596. $sLogOffMenu .= "</ul>\n</li>\n</ul></span>\n";
  597. $sRestrictions = '';
  598. if (!MetaModel::DBHasAccess(ACCESS_ADMIN_WRITE))
  599. {
  600. if (!MetaModel::DBHasAccess(ACCESS_ADMIN_WRITE))
  601. {
  602. $sRestrictions = Dict::S('UI:AccessRO-All');
  603. }
  604. }
  605. elseif (!MetaModel::DBHasAccess(ACCESS_USER_WRITE))
  606. {
  607. $sRestrictions = Dict::S('UI:AccessRO-Users');
  608. }
  609. $sApplicationBanner = '';
  610. if (strlen($sRestrictions) > 0)
  611. {
  612. $sAdminMessage = trim(MetaModel::GetConfig()->Get('access_message'));
  613. $sApplicationBanner .= '<div id="admin-banner">';
  614. $sApplicationBanner .= '<img src="../images/locked.png" style="vertical-align:middle;">';
  615. $sApplicationBanner .= '&nbsp;<b>'.$sRestrictions.'</b>';
  616. if (strlen($sAdminMessage) > 0)
  617. {
  618. $sApplicationBanner .= '&nbsp;<b>'.$sAdminMessage.'</b>';
  619. }
  620. $sApplicationBanner .= '</div>';
  621. }
  622. if(strlen($this->m_sMessage))
  623. {
  624. $sApplicationBanner .= '<div id="admin-banner"><span style="padding:5px;">'.$this->m_sMessage.'<span></div>';
  625. }
  626. $sEnvironment = utils::GetCurrentEnvironment();
  627. $sBackButton = utils::GetEnvironmentBackButton();
  628. if($sEnvironment != 'production')
  629. {
  630. $sEnvLabel = trim(MetaModel::GetConfig()->Get('app_env_label'));
  631. if (strlen($sEnvLabel) == 0)
  632. {
  633. $sEnvLabel = $sEnvironment;
  634. }
  635. $sApplicationBanner .= '<div id="admin-banner"><span style="padding:5px;">'.Dict::Format('UI:ApplicationEnvironment', $sEnvLabel).$sBackButton.'<span></div>';
  636. }
  637. $sOnlineHelpUrl = MetaModel::GetConfig()->Get('online_help');
  638. //$sLogOffMenu = "<span id=\"logOffBtn\" style=\"height:55px;padding:0;margin:0;\"><img src=\"../images/onOffBtn.png\"></span>";
  639. $sHtml .= '<div id="left-pane" class="ui-layout-west">';
  640. $sHtml .= '<!-- Beginning of the left pane -->';
  641. $sHtml .= ' <div id="header-logo">';
  642. $sHtml .= ' <div id="top-left"></div><div id="logo"><a href="http://www.combodo.com/itop"><img src="../images/itop-logo.png" title="'.htmlentities($sVersionString, ENT_QUOTES, 'UTF-8').'" style="border:0; margin-top:16px; margin-right:40px;"/></a></div>';
  643. $sHtml .= ' </div>';
  644. $sHtml .= ' <div class="header-menu">';
  645. $sHtml .= ' <div class="icon ui-state-default ui-corner-all"><span id="tPinMenu" class="ui-icon ui-icon-pin-w">pin</span></div>';
  646. $sHtml .= ' <div style="text-align:center;">'.self::FilterXSS($sForm).'</div>';
  647. $sHtml .= ' </div>';
  648. $sHtml .= ' <div id="menu" class="ui-layout-content">';
  649. $sHtml .= ' <div id="inner_menu">';
  650. $sHtml .= ' <div id="accordion">';
  651. $sHtml .= self::FilterXSS($this->m_sMenu);
  652. $sHtml .= ' <!-- Beginning of the accordion menu -->';
  653. $sHtml .= ' <!-- End of the accordion menu-->';
  654. $sHtml .= ' </div>';
  655. $sHtml .= ' </div> <!-- /inner menu -->';
  656. $sHtml .= ' </div> <!-- /menu -->';
  657. $sHtml .= ' <div class="footer"><a href="http://www.combodo.com" title="www.combodo.com" target="_blank"><img src="../images/logo-combodo.png"/></a></div>';
  658. $sHtml .= '<!-- End of the left pane -->';
  659. $sHtml .= '</div>';
  660. $sHtml .= '<div class="ui-layout-center">';
  661. $sHtml .= ' <div id="top-bar" style="width:100%">';
  662. $sHtml .= self::FilterXSS($sApplicationBanner);
  663. $sHtml .= ' <div id="global-search"><form action="'.utils::GetAbsoluteUrlAppRoot().'pages/UI.php"><table><tr><td></td><td id="g-search-input"><input type="text" name="text" value="'.$sText.'"'.$sOnClick.'/></td>';
  664. $sHtml .= '<td><input type="image" src="../images/searchBtn.png"/></a></td>';
  665. $sHtml .= '<td><a style="background:transparent;" href="'.$sOnlineHelpUrl.'" target="_blank"><img style="border:0;padding-left:20px;padding-right:10px;" title="'.Dict::S('UI:Help').'" src="../images/help.png"/></td>';
  666. $sHtml .= '<td style="padding-right:20px;padding-left:10px;">'.self::FilterXSS($sLogOffMenu).'</td><td><input type="hidden" name="operation" value="full_text"/></td></tr></table></form></div>';
  667. //echo '<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="hidden" name="operation" value="full_text"/></td></tr></table></form></div>';
  668. $sHtml .= ' </div>';
  669. $sHtml .= ' <div class="ui-layout-content">';
  670. $sHtml .= ' <!-- Beginning of page content -->';
  671. $sHtml .= self::FilterXSS($this->s_content);
  672. $sHtml .= ' <!-- End of page content -->';
  673. $sHtml .= ' </div>';
  674. $sHtml .= '</div>';
  675. // Add the captured output
  676. if (trim($s_captured_output) != "")
  677. {
  678. $sHtml .= "<div id=\"rawOutput\" title=\"Debug Output\"><div style=\"height:500px; overflow-y:auto;\">".self::FilterXSS($s_captured_output)."</div></div>\n";
  679. }
  680. $sHtml .= "<div id=\"at_the_end\">".self::FilterXSS($this->s_deferred_content)."</div>";
  681. $sHtml .= "<div style=\"display:none\" title=\"ex2\" id=\"ex2\">Please wait...</div>\n"; // jqModal Window
  682. $sHtml .= "<div style=\"display:none\" title=\"dialog\" id=\"ModalDlg\"></div>";
  683. $sHtml .= "<div style=\"display:none\" id=\"ajax_content\"></div>";
  684. }
  685. else
  686. {
  687. $sHtml .= self::FilterXSS($this->s_content);
  688. }
  689. $sHtml .= "</body>\n";
  690. $sHtml .= "</html>\n";
  691. if ($this->GetOutputFormat() == 'html')
  692. {
  693. echo $sHtml;
  694. }
  695. else if ($this->GetOutputFormat() == 'pdf' && $this->IsOutputFormatAvailable('pdf') )
  696. {
  697. require_once(APPROOT.'lib/MPDF/mpdf.php');
  698. $oMPDF = new mPDF('c');
  699. $oMPDF->mirroMargins = false;
  700. if ($this->a_base['href'] != '')
  701. {
  702. $oMPDF->setBasePath($this->a_base['href']); // Seems that the <BASE> tag is not recognized by mPDF...
  703. }
  704. $oMPDF->showWatermarkText = true;
  705. if ($this->GetOutputOption('pdf', 'template_path'))
  706. {
  707. $oMPDF->setImportUse(); // Allow templates
  708. $oMPDF->SetDocTemplate ($this->GetOutputOption('pdf', 'template_path'), 1);
  709. }
  710. $oMPDF->WriteHTML($sHtml);
  711. $sOutputName = $this->s_title.'.pdf';
  712. if ($this->GetOutputOption('pdf', 'output_name'))
  713. {
  714. $sOutputName = $this->GetOutputOption('pdf', 'output_name');
  715. }
  716. $oMPDF->Output($sOutputName, 'I');
  717. }
  718. }
  719. public function AddTabContainer($sTabContainer)
  720. {
  721. $this->m_aTabs[$sTabContainer] = array();
  722. $this->add("\$Tabs:$sTabContainer\$");
  723. }
  724. public function AddToTab($sTabContainer, $sTabLabel, $sHtml)
  725. {
  726. if (!isset($this->m_aTabs[$sTabContainer][$sTabLabel]))
  727. {
  728. // Set the content of the tab
  729. $this->m_aTabs[$sTabContainer][$sTabLabel] = $sHtml;
  730. }
  731. else
  732. {
  733. // Append to the content of the tab
  734. $this->m_aTabs[$sTabContainer][$sTabLabel] .= $sHtml;
  735. }
  736. }
  737. public function SetCurrentTabContainer($sTabContainer = '')
  738. {
  739. $sPreviousTabContainer = $this->m_sCurrentTabContainer;
  740. $this->m_sCurrentTabContainer = $sTabContainer;
  741. return $sPreviousTabContainer;
  742. }
  743. public function SetCurrentTab($sTabLabel = '')
  744. {
  745. $sPreviousTab = $this->m_sCurrentTab;
  746. $this->m_sCurrentTab = $sTabLabel;
  747. return $sPreviousTab;
  748. }
  749. public function GetCurrentTab()
  750. {
  751. return $this->m_sCurrentTab;
  752. }
  753. public function RemoveTab($sTabLabel, $sTabContainer = null)
  754. {
  755. if ($sTabContainer == null)
  756. {
  757. $sTabContainer = $this->m_sCurrentTabContainer;
  758. }
  759. if (isset($this->m_aTabs[$sTabContainer][$sTabLabel]))
  760. {
  761. // Delete the content of the tab
  762. unset($this->m_aTabs[$sTabContainer][$sTabLabel]);
  763. // If we just removed the active tab, let's reset the active tab
  764. if (($this->m_sCurrentTabContainer == $sTabContainer) && ($this->m_sCurrentTab == $sTabLabel))
  765. {
  766. $this->m_sCurrentTab = '';
  767. }
  768. }
  769. }
  770. /**
  771. * Finds the tab whose title matches a given pattern
  772. * @return mixed The name of the tab as a string or false if not found
  773. */
  774. public function FindTab($sPattern, $sTabContainer = null)
  775. {
  776. $return = false;
  777. if ($sTabContainer == null)
  778. {
  779. $sTabContainer = $this->m_sCurrentTabContainer;
  780. }
  781. foreach($this->m_aTabs[$sTabContainer] as $sTabLabel => $void)
  782. {
  783. if (preg_match($sPattern, $sTabLabel))
  784. {
  785. $result = $sTabLabel;
  786. break;
  787. }
  788. }
  789. return $result;
  790. }
  791. /**
  792. * Make the given tab the active one, as if it were clicked
  793. * DOES NOT WORK: apparently in the *old* version of jquery
  794. * that we are using this is not supported... TO DO upgrade
  795. * the whole jquery bundle...
  796. */
  797. public function SelectTab($sTabContainer, $sTabLabel)
  798. {
  799. $container_index = 0;
  800. $tab_index = 0;
  801. foreach($this->m_aTabs as $sCurrentTabContainerName => $aTabs)
  802. {
  803. if ($sTabContainer == $sCurrentTabContainerName)
  804. {
  805. foreach($aTabs as $sCurrentTabLabel => $void)
  806. {
  807. if ($sCurrentTabLabel == $sTabLabel)
  808. {
  809. break;
  810. }
  811. $tab_index++;
  812. }
  813. break;
  814. }
  815. $container_index++;
  816. }
  817. $sSelector = '#tabbedContent_'.$container_index.' > ul';
  818. $this->add_ready_script("$('$sSelector').tabs('select', $tab_index);");
  819. }
  820. public function StartCollapsibleSection($sSectionLabel, $bOpen = false)
  821. {
  822. $this->add($this->GetStartCollapsibleSection($sSectionLabel, $bOpen));
  823. }
  824. public function GetStartCollapsibleSection($sSectionLabel, $bOpen = false)
  825. {
  826. $sHtml = '';
  827. static $iSectionId = 0;
  828. $sImgStyle = $bOpen ? ' open' : '';
  829. $sHtml .= "<a id=\"LnkCollapse_$iSectionId\" class=\"CollapsibleLabel{$sImgStyle}\" href=\"#\">$sSectionLabel</a></br>\n";
  830. $sStyle = $bOpen ? '' : 'style="display:none" ';
  831. $sHtml .= "<div id=\"Collapse_$iSectionId\" $sStyle>";
  832. $this->add_ready_script("\$(\"#LnkCollapse_$iSectionId\").click(function() {\$(\"#Collapse_$iSectionId\").slideToggle('normal'); $(\"#LnkCollapse_$iSectionId\").toggleClass('open');});");
  833. //$this->add_ready_script("$('#LnkCollapse_$iSectionId').hide();");
  834. $iSectionId++;
  835. return $sHtml;
  836. }
  837. public function EndCollapsibleSection()
  838. {
  839. $this->add($this->GetEndCollapsibleSection());
  840. }
  841. public function GetEndCollapsibleSection()
  842. {
  843. return "</div>";
  844. }
  845. public function add($sHtml)
  846. {
  847. if (!empty($this->m_sCurrentTabContainer) && !empty($this->m_sCurrentTab))
  848. {
  849. $this->AddToTab($this->m_sCurrentTabContainer, $this->m_sCurrentTab, $sHtml);
  850. }
  851. else
  852. {
  853. parent::add($sHtml);
  854. }
  855. }
  856. /**
  857. * Records the current state of the 'html' part of the page output
  858. * @return mixed The current state of the 'html' output
  859. */
  860. public function start_capture()
  861. {
  862. if (!empty($this->m_sCurrentTabContainer) && !empty($this->m_sCurrentTab))
  863. {
  864. $iOffset = isset($this->m_aTabs[$this->m_sCurrentTabContainer][$this->m_sCurrentTab]) ? strlen($this->m_aTabs[$this->m_sCurrentTabContainer][$this->m_sCurrentTab]): 0;
  865. return array('tc' => $this->m_sCurrentTabContainer, 'tab' => $this->m_sCurrentTab, 'offset' => $iOffset);
  866. }
  867. else
  868. {
  869. return parent::start_capture();
  870. }
  871. }
  872. /**
  873. * Returns the part of the html output that occurred since the call to start_capture
  874. * and removes this part from the current html output
  875. * @param $offset mixed The value returned by start_capture
  876. * @return string The part of the html output that was added since the call to start_capture
  877. */
  878. public function end_capture($offset)
  879. {
  880. if (is_array($offset))
  881. {
  882. if (isset($this->m_aTabs[$offset['tc']][$offset['tab']]))
  883. {
  884. $sCaptured = substr($this->m_aTabs[$offset['tc']][$offset['tab']], $offset['offset']);
  885. $this->m_aTabs[$offset['tc']][$offset['tab']] = substr($this->m_aTabs[$offset['tc']][$offset['tab']], 0, $offset['offset']);
  886. }
  887. else
  888. {
  889. $sCaptured = '';
  890. }
  891. }
  892. else
  893. {
  894. $sCaptured = parent::end_capture($offset);
  895. }
  896. return $sCaptured;
  897. }
  898. /**
  899. * Set the message to be displayed in the 'admin-banner' section at the top of the page
  900. */
  901. public function SetMessage($sMessage)
  902. {
  903. $this->m_sMessage = $sMessage;
  904. }
  905. }
  906. ?>