1 | <?php |
||
17 | class SessionSettingsStorage extends Component implements SettingsStorageInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | public $sessionKey = 'themeManger.themeSettings'; |
||
23 | |||
24 | /** |
||
25 | * @param Model $model the settings model |
||
26 | */ |
||
27 | public function set(Model $model) |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function get() |
||
40 | } |
||
41 |