3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2015
35 * This class generates form components for the display preferences.
37 class CRM_Admin_Form_Preferences_Display
extends CRM_Admin_Form_Preferences
{
38 public function preProcess() {
39 CRM_Utils_System
::setTitle(ts('Settings - Display Preferences'));
41 $this->_varNames
= array(
42 CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
=> array(
43 'contact_view_options' => array(
44 'html_type' => 'checkboxes',
45 'title' => ts('Viewing Contacts'),
48 'contact_smart_group_display' => array(
49 'html_type' => 'radio',
50 'title' => ts('Viewing Smart Groups'),
53 'contact_edit_options' => array(
54 'html_type' => 'checkboxes',
55 'title' => ts('Editing Contacts'),
58 'advanced_search_options' => array(
59 'html_type' => 'checkboxes',
60 'title' => ts('Contact Search'),
63 'activity_assignee_notification' => array(
64 'html_type' => 'checkbox',
65 'title' => ts('Notify Activity Assignees'),
68 'activity_assignee_notification_ics' => array(
69 'html_type' => 'checkbox',
70 'title' => ts('Include ICal Invite to Activity Assignees'),
73 'contact_ajax_check_similar' => array(
74 'html_type' => 'checkbox',
75 'title' => ts('Check for Similar Contacts'),
78 'user_dashboard_options' => array(
79 'html_type' => 'checkboxes',
80 'title' => ts('Contact Dashboard'),
83 'display_name_format' => array(
84 'html_type' => 'textarea',
85 'title' => ts('Individual Display Name Format'),
88 'sort_name_format' => array(
89 'html_type' => 'textarea',
90 'title' => ts('Individual Sort Name Format'),
97 'ajaxPopupsEnabled' => array(
98 'html_type' => 'checkbox',
99 'title' => ts('Enable Popup Forms'),
105 parent
::preProcess();
111 public function setDefaultValues() {
112 $defaults = parent
::setDefaultValues();
113 parent
::cbsDefaultValues($defaults);
115 if ($this->_config
->display_name_format
) {
116 $defaults['display_name_format'] = $this->_config
->display_name_format
;
118 if ($this->_config
->sort_name_format
) {
119 $defaults['sort_name_format'] = $this->_config
->sort_name_format
;
126 * Build the form object.
128 public function buildQuickForm() {
129 $wysiwyg_options = CRM_Core_OptionGroup
::values('wysiwyg_editor', FALSE, FALSE, FALSE, NULL, 'label', TRUE, FALSE, 'name');
131 //changes for freezing the invoices/credit notes checkbox if invoicing is uncheck
132 $invoiceSettings = CRM_Core_BAO_Setting
::getItem(CRM_Core_BAO_Setting
::CONTRIBUTE_PREFERENCES_NAME
, 'contribution_invoice_settings');
133 $invoicing = CRM_Utils_Array
::value('invoicing', $invoiceSettings);
134 $this->assign('invoicing', $invoicing);
137 $this->addElement('select', 'editor_id', ts('WYSIWYG Editor'), $wysiwyg_options, $extra);
138 $this->addElement('submit', 'ckeditor_config', ts('Configure CKEditor'));
140 $editOptions = CRM_Core_OptionGroup
::values('contact_edit_options', FALSE, FALSE, FALSE, 'AND v.filter = 0');
141 $this->assign('editOptions', $editOptions);
143 $contactBlocks = CRM_Core_OptionGroup
::values('contact_edit_options', FALSE, FALSE, FALSE, 'AND v.filter = 1');
144 $this->assign('contactBlocks', $contactBlocks);
146 $nameFields = CRM_Core_OptionGroup
::values('contact_edit_options', FALSE, FALSE, FALSE, 'AND v.filter = 2');
147 $this->assign('nameFields', $nameFields);
149 $this->addElement('hidden', 'contact_edit_preferences', NULL, array('id' => 'contact_edit_preferences'));
151 $optionValues = CRM_Core_OptionGroup
::values('user_dashboard_options', FALSE, FALSE, FALSE, NULL, 'name');
152 $invoicesKey = array_search('Invoices / Credit Notes', $optionValues);
153 $this->assign('invoicesKey', $invoicesKey);
154 parent
::buildQuickForm();
158 * Process the form submission.
160 public function postProcess() {
161 if ($this->_action
== CRM_Core_Action
::VIEW
) {
165 $this->_params
= $this->controller
->exportValues($this->_name
);
167 if (!empty($this->_params
['contact_edit_preferences'])) {
168 $preferenceWeights = explode(',', $this->_params
['contact_edit_preferences']);
169 foreach ($preferenceWeights as $key => $val) {
171 unset($preferenceWeights[$key]);
174 $opGroupId = CRM_Core_DAO
::getFieldValue('CRM_Core_DAO_OptionGroup', 'contact_edit_options', 'id', 'name');
175 CRM_Core_BAO_OptionValue
::updateOptionWeights($opGroupId, array_flip($preferenceWeights));
178 $this->_config
->editor_id
= $this->_params
['editor_id'];
180 $this->postProcessCommon();
182 // If "Configure CKEditor" button was clicked
183 if (!empty($this->_params
['ckeditor_config'])) {
184 // Suppress the "Saved" status message and redirect to the CKEditor Config page
185 $session = CRM_Core_Session
::singleton();
186 $session->getStatus(TRUE);
187 $url = CRM_Utils_System
::url('civicrm/admin/ckeditor', 'reset=1');
188 $session->pushUserContext($url);