/** * Get tab names * * @return array */ public function getTabPages() { $tabs = parent::getTabPages(); if (isset($tabs['Environment'])) { unset($tabs['Environment']); } return $tabs; }
/** * Get tab names * * @return array */ public function getPages() { $list = parent::getPages(); $list[static::LOGO_FAVICON_CATEGORY] = static::t('Logo & Favicon'); return $list; }
/** * Get tab names * * @return array */ public function getPages() { $list = parent::getPages(); $list[static::UNITS_PAGE] = static::t('Localization'); return $list; }
/** * 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')); }
/** * 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')); }