123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <?php
- // Copyright (C) 2010-2012 Combodo SARL
- //
- // This file is part of iTop.
- //
- // iTop is free software; you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // iTop is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with iTop. If not, see <http://www.gnu.org/licenses/>
- /**
- * User preferences page
- * Displays / edit some user preferences
- *
- * @copyright Copyright (C) 2010-2012 Combodo SARL
- * @license http://opensource.org/licenses/AGPL-3.0
- */
- require_once('../approot.inc.php');
- require_once(APPROOT.'/application/application.inc.php');
- require_once(APPROOT.'/application/itopwebpage.class.inc.php');
- require_once(APPROOT.'/application/startup.inc.php');
- /**
- * Displays the user's changeable preferences
- * @param $oP WebPage The web page used for the output
- */
- function DisplayPreferences($oP)
- {
- $oAppContext = new ApplicationContext();
- $sURL = utils::GetAbsoluteUrlAppRoot().'pages/UI.php?'.$oAppContext->GetForLink();
-
- $oP->add('<div class="page_header"><h1><img style="vertical-align:middle" src="../images/preferences.png"/> '.Dict::S('UI:Preferences')."</h1></div>\n");
- $oP->add('<div id="user_prefs" style="max-width:800px; min-width:400px;">');
-
- //////////////////////////////////////////////////////////////////////////
- //
- // User Language selection
- //
- //////////////////////////////////////////////////////////////////////////
- $oP->add('<fieldset><legend>'.Dict::S('UI:FavoriteLanguage').'</legend>');
- $oP->add('<form method="post">');
- $aLanguages = Dict::GetLanguages();
- $aSortedlang = array();
- foreach($aLanguages as $sCode => $aLang)
- {
- $aSortedlang[$aLang['description']] = $sCode;
- }
- ksort($aSortedlang);
- $oP->add('<p>'.Dict::S('UI:Favorites:SelectYourLanguage').' <select name="language">');
- foreach($aSortedlang as $sCode)
- {
- $sSelected = ($sCode == Dict::GetUserLanguage()) ? 'selected' : '';
- $oP->add('<option value="'.$sCode.'" '.$sSelected.'/>'.$aLanguages[$sCode]['description'].' ('.$aLanguages[$sCode]['localized_description'].')</option>');
- }
- $oP->add('</select></p>');
- $oP->add('<input type="hidden" name="operation" value="apply_language"/>');
- $oP->add($oAppContext->GetForForm());
- $oP->add('<p><input type="button" onClick="window.location.href=\''.$sURL.'\'" value="'.Dict::S('UI:Button:Cancel').'"/>');
- $oP->add(' ');
- $oP->add('<input type="submit" value="'.Dict::S('UI:Button:Apply').'"/></p>');
- $oP->add('</form>');
- $oP->add('</fieldset>');
- //////////////////////////////////////////////////////////////////////////
- //
- // Other (miscellaneous) settings
- //
- //////////////////////////////////////////////////////////////////////////
-
- $oP->add('<fieldset><legend>'.Dict::S('UI:FavoriteOtherSettings').'</legend>');
- $oP->add('<form method="post" onsubmit="return ValidateOtherSettings()">');
- $iDefaultPageSize = appUserPreferences::GetPref('default_page_size', MetaModel::GetConfig()->GetMinDisplayLimit());
- $oP->add('<p>'.Dict::Format('UI:Favorites:Default_X_ItemsPerPage', '<input id="default_page_size" name="default_page_size" type="text" size="3" value="'.$iDefaultPageSize.'"/><span id="v_default_page_size"></span>').'</p>');
- $oP->add('<input type="hidden" name="operation" value="apply_others"/>');
- $oP->add($oAppContext->GetForForm());
- $oP->add('<p><input type="button" onClick="window.location.href=\''.$sURL.'\'" value="'.Dict::S('UI:Button:Cancel').'"/>');
- $oP->add(' ');
- $oP->add('<input id="other_submit" type="submit" value="'.Dict::S('UI:Button:Apply').'"/></p>');
- $oP->add('</form>');
- $oP->add('</fieldset>');
-
- $oP->add_script(
- <<<EOF
- function ValidateOtherSettings()
- {
- var sPageLength = $('#default_page_size').val();
- var iPageLength = parseInt(sPageLength , 10);
- if (/^[0-9]+$/.test(sPageLength) && (iPageLength > 0))
- {
- $('#v_default_page_size').html('');
- $('#other_submit').removeAttr('disabled');
- return true;
- }
- else
- {
- $('#v_default_page_size').html('<img src="../images/validation_error.png"/>');
- $('#other_submit').attr('disabled', 'disabled');
- return false;
- }
- }
- EOF
- );
- //////////////////////////////////////////////////////////////////////////
- //
- // Favorite Organizations
- //
- //////////////////////////////////////////////////////////////////////////
- $oP->add('<fieldset><legend>'.Dict::S('UI:FavoriteOrganizations').'</legend>');
- $oP->p(Dict::S('UI:FavoriteOrganizations+'));
- $oP->add('<form method="post">');
- // Favorite organizations: the organizations listed in the drop-down menu
- $sOQL = ApplicationMenu::GetFavoriteSiloQuery();
- $oFilter = DBObjectSearch::FromOQL($sOQL);
- $oBlock = new DisplayBlock($oFilter, 'list', false);
- $oBlock->Display($oP, 1, array('menu' => false, 'selection_mode' => true, 'selection_type' => 'multiple', 'cssCount'=> '.selectedCount', 'table_id' => 'user_prefs'));
- $oP->add($oAppContext->GetForForm());
- $oP->add('<input type="hidden" name="operation" value="apply"/>');
- $oP->add('<p><input type="button" onClick="window.location.href=\''.$sURL.'\'" value="'.Dict::S('UI:Button:Cancel').'"/>');
- $oP->add(' ');
- $oP->add('<input type="submit" value="'.Dict::S('UI:Button:Apply').'"/></p>');
- $oP->add('</form>');
- $oP->add('</fieldset>');
- $aFavoriteOrgs = appUserPreferences::GetPref('favorite_orgs', null);
- if ($aFavoriteOrgs == null)
- {
- // All checked
- $oP->add_ready_script(
- <<<EOF
- if ($('#user_prefs table.pagination').length > 0)
- {
- // paginated display, restore the selection
- var pager = $('#user_prefs form .pager');
- $(':input[name=selectionMode]', pager).val('negative');
- $('#user_prefs table.listResults').trigger('load_selection');
- }
- else
- {
- $('#user_prefs table.listResults').trigger('check_all');
- }
- EOF
- );
- }
- else
- {
- $sChecked = implode('","', $aFavoriteOrgs);
- $oP->add_ready_script(
- <<<EOF
- var aChecked = ["$sChecked"];
- if ($('#user_prefs table.pagination').length > 0)
- {
- // paginated display, restore the selection
- var pager = $('#user_prefs form .pager');
- $(':input[name=selectionMode]', pager).val('positive');
- for (i=0; i<aChecked.length; i++)
- {
- pager.append('<input type="hidden" name="storedSelection[]" id="'+aChecked[i]+'" value="'+aChecked[i]+'"/>');
- }
- $('#user_prefs table.listResults').trigger('load_selection');
-
- }
- else
- {
- $('#user_prefs form :checkbox[name^=selectObject]').each( function()
- {
- if ($.inArray($(this).val(), aChecked) > -1)
- {
- $(this).attr('checked', true);
- $(this).trigger('change');
- }
- });
- }
- EOF
- );
- }
- //////////////////////////////////////////////////////////////////////////
- //
- // Shortcuts
- //
- //////////////////////////////////////////////////////////////////////////
- $oP->add('<fieldset><legend>'.Dict::S('Menu:MyShortcuts').'</legend>');
- //$oP->p(Dict::S('UI:Menu:MyShortcuts+'));
- $oBMSearch = new DBObjectSearch('Shortcut');
- $oBMSearch->AddCondition('user_id', UserRights::GetUserId(), '=');
- //$aExtraParams = array('menu' => false, 'toolkit_menu' => false, 'display_limit' => false, 'localize_values' => $bLocalize, 'zlist' => 'details');
- $aExtraParams = array();
- $oBlock = new DisplayBlock($oBMSearch, 'list', false, $aExtraParams);
- $oBlock->Display($oP, 'shortcut_list', array('view_link' => false, 'menu' => false, 'toolkit_menu' => false, 'selection_mode' => true, 'selection_type' => 'multiple', 'cssCount'=> '#shortcut_selection_count', 'table_id' => 'user_prefs_shortcuts'));
- $oP->add('<p>');
- $oSet = new DBObjectSet($oBMSearch);
- if ($oSet->Count() > 0)
- {
- $sButtons = '<img src="../images/tv-item-last.gif">';
- $sButtons .= ' ';
- $sButtons .= '<button id="shortcut_btn_rename">'.Dict::S('UI:Button:Rename').'</button>';
- $sButtons .= ' ';
- $sButtons .= '<button id="shortcut_btn_delete">'.Dict::S('UI:Button:Delete').'</button>';
- // Selection count updated by the pager, and used to enable buttons
- $oP->add('<input type="hidden" id="shortcut_selection_count"/>');
- $oP->add('</fieldset>');
-
- $sConfirmDelete = addslashes(Dict::S('UI:ShortcutDelete:Confirm'));
-
- $oP->add_ready_script(
- <<<EOF
- function OnShortcutBtnRename()
- {
- var oParams = $('#datatable_shortcut_list').datatable('GetMultipleSelectionParams');
- oParams.operation = 'shortcut_rename_dlg';
- $.post(GetAbsoluteUrlAppRoot()+'pages/ajax.render.php', oParams, function(data){
- $('body').append(data);
- });
- return false;
- }
- function OnShortcutBtnDelete()
- {
- if (confirm('$sConfirmDelete'))
- {
- var oParams = $('#datatable_shortcut_list').datatable('GetMultipleSelectionParams');
- oParams.operation = 'shortcut_delete_go';
- $.post(GetAbsoluteUrlAppRoot()+'pages/ajax.render.php', oParams, function(data){
- $('body').append(data);
- });
- }
- return false;
- }
- function OnSelectionCountChange()
- {
- var iCountSelected = $("#shortcut_selection_count").val();
- if (iCountSelected == 0)
- {
- $('#shortcut_btn_rename').attr('disabled', 'disabled');
- $('#shortcut_btn_delete').attr('disabled', 'disabled');
- }
- else if (iCountSelected == 1)
- {
- $('#shortcut_btn_rename').removeAttr('disabled');
- $('#shortcut_btn_delete').removeAttr('disabled');
- }
- else
- {
- $('#shortcut_btn_rename').attr('disabled', 'disabled');
- $('#shortcut_btn_delete').removeAttr('disabled');
- }
- }
- var oUpperCheckBox = $('#datatable_shortcut_list .checkAll').first();
- oUpperCheckBox.parent().width(oUpperCheckBox.width() + 2);
- $('#datatable_shortcut_list').append('<tr><td colspan="2"> $sButtons</td></tr>');
- $('#shortcut_selection_count').bind('change', OnSelectionCountChange);
- $('#shortcut_btn_rename').bind('click', OnShortcutBtnRename);
- $('#shortcut_btn_delete').bind('click', OnShortcutBtnDelete);
- OnSelectionCountChange();
- EOF
- );
- } // if count > 0
- //////////////////////////////////////////////////////////////////////////
- //
- // Footer
- //
- $oP->add('</div>');
- $oP->add_ready_script("$('#fav_page_length').bind('keyup change', function(){ ValidateOtherSettings(); })");
- }
- /////////////////////////////////////////////////////////////////////////////
- //
- // Main program
- //
- /////////////////////////////////////////////////////////////////////////////
- require_once(APPROOT.'/application/loginwebpage.class.inc.php');
- LoginWebPage::DoLogin(); // Check user rights and prompt if needed
- $iStep = utils::ReadParam('step', 1);
- $oPage = new iTopWebPage(Dict::S('UI:Preferences'));
- $sOperation = utils::ReadParam('operation', '');
-
- try
- {
- switch($sOperation)
- {
- case 'apply':
- $oFilter = DBObjectSearch::FromOQL('SELECT Organization');
- $sSelectionMode = utils::ReadParam('selectionMode', '');
- $aExceptions = utils::ReadParam('storedSelection', array());
- if (($sSelectionMode == 'negative') && (count($aExceptions) == 0))
- {
- // All Orgs selected
- appUserPreferences::SetPref('favorite_orgs', null);
- }
- else
- {
- // Some organizations selected... store them
- $aSelectOrgs = utils::ReadMultipleSelection($oFilter);
- appUserPreferences::SetPref('favorite_orgs', $aSelectOrgs);
- }
- DisplayPreferences($oPage);
- break;
-
- case 'apply_language':
- $sLangCode = utils::ReadParam('language', 'EN US');
- $oUser = UserRights::GetUserObject();
- $oUser->Set('language', $sLangCode);
- $oUser->DBUpdate();
- // Redirect to force a reload/display of the page with the new language
- $oAppContext = new ApplicationContext();
- $sURL = utils::GetAbsoluteUrlAppRoot().'pages/preferences.php?'.$oAppContext->GetForLink();
- $oPage->add_header('Location: '.$sURL);
- break;
- case 'apply_others':
- $iDefaultPageSize = (int)utils::ReadParam('default_page_size', -1);
- if ($iDefaultPageSize > 0)
- {
- appUserPreferences::SetPref('default_page_size', $iDefaultPageSize);
- }
- DisplayPreferences($oPage);
- break;
-
- case 'display':
- default:
- DisplayPreferences($oPage);
- }
- $oPage->output();
- }
- catch(CoreException $e)
- {
- require_once(APPROOT.'/setup/setuppage.class.inc.php');
- $oP = new SetupPage(Dict::S('UI:PageTitle:FatalError'));
- $oP->add("<h1>".Dict::S('UI:FatalErrorMessage')."</h1>\n");
- $oP->error(Dict::Format('UI:Error_Details', $e->getHtmlDesc()));
- $oP->output();
- if (MetaModel::IsLogEnabledIssue())
- {
- if (MetaModel::IsValidClass('EventIssue'))
- {
- $oLog = new EventIssue();
- $oLog->Set('message', $e->getMessage());
- $oLog->Set('userinfo', '');
- $oLog->Set('issue', $e->GetIssue());
- $oLog->Set('impact', 'Page could not be displayed');
- $oLog->Set('callstack', $e->getTrace());
- $oLog->Set('data', $e->getContextData());
- $oLog->DBInsertNoReload();
- }
- IssueLog::Error($e->getMessage());
- }
- // For debugging only
- //throw $e;
- }
- catch(Exception $e)
- {
- require_once(APPROOT.'/setup/setuppage.class.inc.php');
- $oP = new SetupPage(Dict::S('UI:PageTitle:FatalError'));
- $oP->add("<h1>".Dict::S('UI:FatalErrorMessage')."</h1>\n");
- $oP->error(Dict::Format('UI:Error_Details', $e->getMessage()));
- $oP->output();
- if (MetaModel::IsLogEnabledIssue())
- {
- if (MetaModel::IsValidClass('EventIssue'))
- {
- $oLog = new EventIssue();
- $oLog->Set('message', $e->getMessage());
- $oLog->Set('userinfo', '');
- $oLog->Set('issue', 'PHP Exception');
- $oLog->Set('impact', 'Page could not be displayed');
- $oLog->Set('callstack', $e->getTrace());
- $oLog->Set('data', array());
- $oLog->DBInsertNoReload();
- }
- IssueLog::Error($e->getMessage());
- }
- }
- ?>
|