1 <?php
2
3 /*
4 * This file is part of the Icybee package.
5 *
6 * (c) Olivier Laviale <olivier.laviale@gmail.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Icybee\Modules\Contents;
13
14 /**
15 * The class doesn't do a thing but make config events more accurate because one can listen to the
16 * configuration of a "contents" type module.
17 */
18 class ConfigOperation extends \Icybee\Modules\Nodes\ConfigOperation
19 {
20 protected function lazy_get_properties()
21 {
22 $properties = parent::lazy_get_properties();
23
24 $properties['local'] += [
25
26 "{$this->module->flat_id}.use_multi_editor" => false
27 ];
28
29 return $properties;
30 }
31 }