Merge pull request #16567 from eileenmcnaughton/parti_form
[civicrm-core.git] / CRM / Admin / Form / Setting / Case.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class generates form components for CiviCase.
20 */
21 class CRM_Admin_Form_Setting_Case extends CRM_Admin_Form_Setting {
22
23 protected $_settings = [
24 'civicaseRedactActivityEmail' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
25 'civicaseAllowMultipleClients' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
26 'civicaseNaturalActivityTypeSort' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
27 'civicaseActivityRevisions' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
28 ];
29
30 /**
31 * Build the form object.
32 */
33 public function buildQuickForm() {
34 CRM_Utils_System::setTitle(ts('Settings - CiviCase'));
35 parent::buildQuickForm();
36 }
37
38 }