Merge pull request #4875 from civicrm/minor-fix
[civicrm-core.git] / CRM / Admin / Form / ContactType.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
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. |
13 | |
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. |
18 | |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for ContactSub Type
38 *
39 */
40class CRM_Admin_Form_ContactType extends CRM_Admin_Form {
41
42 /**
c490a46a 43 * Build the form object
6a488035 44 *
355ba699 45 * @return void
6a488035
TO
46 */
47 public function buildQuickForm() {
48 parent::buildQuickForm();
e2046b33
CW
49 $this->setPageTitle(ts('Contact Type'));
50
6a488035
TO
51 if ($this->_action & CRM_Core_Action::DELETE) {
52 return;
53 }
54 $this->applyFilter('__ALL__', 'trim');
55 $this->add('text', 'label', ts('Name'),
56 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_ContactType', 'label'),
57 TRUE
58 );
59 $contactType = $this->add('select', 'parent_id', ts('Basic Contact Type'),
60 CRM_Contact_BAO_ContactType::basicTypePairs(FALSE, 'id')
61 );
62 $enabled = $this->add('checkbox', 'is_active', ts('Enabled?'));
63 if ($this->_action & CRM_Core_Action::UPDATE) {
64 $contactType->freeze();
65 // We'll display actual "name" for built-in types (for reference) when editing their label / image_URL
66 $contactTypeName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_ContactType', $this->_id, 'name');
67 $this->assign('contactTypeName', $contactTypeName);
68
69 $this->_parentId = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_ContactType', $this->_id, 'parent_id');
70 // Freeze Enabled field for built-in contact types (parent_id is NULL for these)
71 if (is_null($this->_parentId)) {
72 $enabled->freeze();
73 }
74 }
75 $this->addElement('text', 'image_URL', ts('Image URL'));
76 $this->add('text', 'description', ts('Description'),
77 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_ContactType', 'description')
78 );
79
80 $this->assign('cid', $this->_id);
81 $this->addFormRule(array('CRM_Admin_Form_ContactType', 'formRule'), $this);
82 }
83
84 /**
100fef9d 85 * Global form rule
6a488035 86 *
5173bd95
TO
87 * @param array $fields
88 * The input form values.
77b97be7
EM
89 *
90 * @param $files
91 * @param $self
6a488035 92 *
72b3a70c
CW
93 * @return bool|array
94 * true if no errors, else array of errors
6a488035
TO
95 * @static
96 */
00be9182 97 public static function formRule($fields, $files, $self) {
6a488035
TO
98
99 $errors = array();
100
101 if ($self->_id) {
102 $contactName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_ContactType', $self->_id, 'name');
103 }
104 else {
105 $contactName = ucfirst(CRM_Utils_String::munge($fields['label']));
106 }
107
108 if (!CRM_Core_DAO::objectExists($contactName, 'CRM_Contact_DAO_ContactType', $self->_id)) {
109 $errors['label'] = ts('This contact type name already exists in database. Contact type names must be unique.');
110 }
111
112 $reservedKeyWords = CRM_Core_SelectValues::customGroupExtends();
113 //restrict "name" from being a reserved keyword when a new contact subtype is created
114 if (!$self->_id && in_array($contactName, array_keys($reservedKeyWords))) {
115 $errors['label'] = ts('Contact type names should not use reserved keywords.');
116 }
117 return empty($errors) ? TRUE : $errors;
118 }
119
120 /**
c490a46a 121 * Process the form submission
6a488035 122 *
6a488035 123 *
355ba699 124 * @return void
6a488035
TO
125 */
126 public function postProcess() {
127 CRM_Utils_System::flushCache();
128
129 if ($this->_action & CRM_Core_Action::DELETE) {
130 $isDelete = CRM_Contact_BAO_ContactType::del($this->_id);
131 if ($isDelete) {
132 CRM_Core_Session::setStatus(ts('Selected contact type has been deleted.'), ts('Record Deleted'), 'success');
133 }
134 else {
135 CRM_Core_Session::setStatus(ts("Selected contact type can not be deleted. Make sure contact type doesn't have any associated custom data or group."), ts('Sorry'), 'error');
136 }
137 return;
138 }
139 // store the submitted values in an array
140 $params = $this->exportValues();
141
142 if ($this->_action & CRM_Core_Action::UPDATE) {
143 $params['id'] = $this->_id;
144 // Force Enabled = true for built-in contact types to fix problems caused by CRM-6471 (parent_id is NULL for these types)
145 if (is_null($this->_parentId)) {
146 $params['is_active'] = 1;
147 }
148 }
149 if ($this->_action & CRM_Core_Action::ADD) {
150 $params['name'] = ucfirst(CRM_Utils_String::munge($params['label']));
151 }
152 $contactType = CRM_Contact_BAO_ContactType::add($params);
153 CRM_Core_Session::setStatus(ts("The Contact Type '%1' has been saved.",
353ffa53
TO
154 array(1 => $contactType->label)
155 ), ts('Saved'), 'success');
6a488035 156 }
e2046b33 157
6a488035 158}