1 | <?php |
||
15 | trait core_options_common { |
||
16 | /** |
||
17 | * Apply mail settings |
||
18 | * |
||
19 | * @param \cs\Request $Request |
||
20 | * @param string[] $options |
||
21 | * |
||
22 | * @throws ExitException |
||
23 | */ |
||
24 | protected static function admin_core_options_apply ($Request, $options) { |
||
30 | /** |
||
31 | * @param \cs\Request $Request |
||
32 | * @param string[] $options |
||
33 | * |
||
34 | * @throws ExitException |
||
35 | */ |
||
36 | protected static function admin_core_options_common ($Request, $options) { |
||
44 | /** |
||
45 | * Save mail settings |
||
46 | * |
||
47 | * @param \cs\Request $Request |
||
48 | * @param string[] $options |
||
49 | * |
||
50 | * @throws ExitException |
||
51 | */ |
||
52 | protected static function admin_core_options_save ($Request, $options) { |
||
58 | /** |
||
59 | * Cancel mail settings |
||
60 | * |
||
61 | * @throws ExitException |
||
62 | */ |
||
63 | protected static function admin_core_options_cancel () { |
||
66 | } |
||
67 |