Esempio n. 1
0
 /**
  * @return void
  */
 function _populateParams()
 {
     gantry_import('core.params.gantryurlparams');
     gantry_import('core.params.gantrysessionparams');
     gantry_import('core.params.gantrycookieparams');
     gantry_import('core.params.gantrymenuitemparams');
     // get a copy of the params for working with on this call
     $this->_working_params = $this->_templateDetails->params;
     if (!isset($_REQUEST['reset-settings'])) {
         GantrySessionParams::populate();
         GantryCookieParams::populate();
     }
     GantryMenuItemParams::populate();
     if (!isset($_REQUEST['reset-settings'])) {
         GantryUrlParams::populate();
     }
 }