/** * @inheritdoc */ public function get($name, $default = null) { if ($this->isFixed($name)) { return Yii::$app->params['fixed-settings'][$this->moduleId][$name]; } return parent::get($name, $default); }
/** * @inheritdoc */ protected function getCacheKey() { return parent::getCacheKey() . '-' . $this->contentContainer->id; }