This manual is deprecated. Please visit https://groupoffice.readthedocs.io for the latest documentation. |
Extending settings with your own module
From Group-Office Groupware and CRM Documentation
When creating your own module then you probably would have some module settings that you want to add to the Group-Office settings panel.
public static function submitSettings(&$settingsController, &$params, &$response, $user) { return parent::submitSettings($settingsController, $params, $response, $user); }
public static function loadSettings(&$settingsController, &$params, &$response, $user) { return parent::loadSettings($settingsController, $params, $response, $user); }