Exemplo n.º 1
0
 /**
  * Get tab names
  *
  * @return array
  */
 public function getTabPages()
 {
     $tabs = parent::getTabPages();
     if (isset($tabs['Environment'])) {
         unset($tabs['Environment']);
     }
     return $tabs;
 }
Exemplo n.º 2
0
 /**
  * Get tab names
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     $list[static::LOGO_FAVICON_CATEGORY] = static::t('Logo & Favicon');
     return $list;
 }
Exemplo n.º 3
0
 /**
  * Get tab names
  *
  * @return array
  */
 public function getPages()
 {
     $list = parent::getPages();
     $list[static::UNITS_PAGE] = static::t('Localization');
     return $list;
 }
Exemplo n.º 4
0
 /**
  * Perform some actions before redirect
  *
  * FIXME: check. Action should not be an optional param
  *
  * @param string|null $action Performed action OPTIONAL
  *
  * @return void
  */
 protected function actionPostprocess($action = null)
 {
     parent::actionPostprocess($action);
     $this->setReturnURL($this->buildURL('css_js_performance'));
 }
Exemplo n.º 5
0
 /**
  * Perform some actions before redirect
  *
  * FIXME: check. Action should not be an optional param
  *
  * @param string|null $action Performed action OPTIONAL
  *
  * @return void
  */
 protected function actionPostprocess($action = null)
 {
     parent::actionPostprocess($action);
     $this->setReturnURL($this->buildURL('cache_management'));
 }