| 1 | <?php |
||
| 9 | class SessionSettingsStorage extends Component implements SettingsStorageInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | public $sessionKey = 'themeManger.themeSettings'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param Model $model the settings model |
||
| 18 | */ |
||
| 19 | public function set(Model $model) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @inheritdoc |
||
| 27 | */ |
||
| 28 | public function get() |
||
| 32 | } |
||
| 33 |