3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
37 * Parent class for inline contact forms
39 abstract class CRM_Contact_Form_Inline
extends CRM_Core_Form
{
42 * Id of the contact that is being edited
47 * Type of contact being edited
52 * Sub type of contact being edited
54 public $_contactSubType;
57 * Common preprocess: fetch contact ID and contact type
59 public function preProcess() {
60 $this->_contactId
= CRM_Utils_Request
::retrieve('cid', 'Positive', $this, TRUE, NULL, $_REQUEST);
61 $this->assign('contactId', $this->_contactId
);
63 // get contact type and subtype
64 if (empty($this->_contactType
)) {
65 $contactTypeInfo = CRM_Contact_BAO_Contact
::getContactTypes($this->_contactId
);
66 $this->_contactType
= $contactTypeInfo[0];
68 // check if subtype is set
69 if (isset($contactTypeInfo[1])) {
70 // unset contact type which is 0th element
71 unset($contactTypeInfo[0]);
72 $this->_contactSubType
= $contactTypeInfo;
76 $this->assign('contactType', $this->_contactType
);
80 * Common form elements
85 public function buildQuickForm() {
86 CRM_Contact_Form_Inline_Lock
::buildQuickForm($this, $this->_contactId
);
96 'name' => ts('Cancel'),
99 $this->addButtons($buttons);
103 * Override default cancel action
108 public function cancelAction() {
109 $response = array('status' => 'cancel');
110 CRM_Utils_JSON
::output($response);
114 * Set defaults for the form
119 public function setDefaultValues() {
120 $defaults = $params = array();
121 $params['id'] = $this->_contactId
;
123 CRM_Contact_BAO_Contact
::getValues($params, $defaults);
129 * Add entry to log table
134 protected function log() {
135 CRM_Core_BAO_Log
::register($this->_contactId
,
142 * Common function for all inline contact edit forms
143 * Prepares ajaxResponse
148 protected function response() {
149 // Load changelog footer from template
150 $smarty = CRM_Core_Smarty
::singleton();
151 $smarty->assign('contactId', $this->_contactId
);
152 $smarty->assign('external_identifier', CRM_Core_DAO
::getFieldValue('CRM_Contact_DAO_Contact', $this->_contactId
, 'external_identifier'));
153 $smarty->assign('lastModified', CRM_Core_BAO_Log
::lastModified($this->_contactId
, 'civicrm_contact'));
154 $viewOptions = CRM_Core_BAO_Setting
::valueOptions(CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
,
155 'contact_view_options', TRUE
157 $smarty->assign('changeLog', $viewOptions['log']);
158 $this->ajaxResponse
= array_merge(
160 'changeLog' => array(
161 'count' => CRM_Contact_BAO_Contact
::getCountComponent('log', $this->_contactId
),
162 'markup' => $smarty->fetch('CRM/common/contactFooter.tpl'),
166 CRM_Contact_Form_Inline_Lock
::getResponse($this->_contactId
)
168 // Note: Post hooks will be called by CRM_Core_Form::mainProcess