Merge pull request #12858 from eileenmcnaughton/this
[civicrm-core.git] / CRM / Custom / Form / CustomDataByType.php
CommitLineData
5b15263a
EM
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
5b15263a 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
5b15263a
EM
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
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
5b15263a
EM
32 */
33
34/**
35 * This form is intended to replace the overloading of many forms to generate a snippet for custom data.
36 */
37class CRM_Custom_Form_CustomDataByType extends CRM_Core_Form {
38
39 /**
40 * Preprocess function.
41 */
42 public function preProcess() {
43
44 $this->_type = $this->_cdType = CRM_Utils_Request::retrieve('type', 'String', CRM_Core_DAO::$_nullObject, TRUE);
45 $this->_subType = CRM_Utils_Request::retrieve('subType', 'String');
46 $this->_subName = CRM_Utils_Request::retrieve('subName', 'String');
47 $this->_groupCount = CRM_Utils_Request::retrieve('cgcount', 'Positive');
48 $this->_entityId = CRM_Utils_Request::retrieve('entityID', 'Positive');
49 $this->_groupID = CRM_Utils_Request::retrieve('groupID', 'Positive');
4bd532e8 50 $this->_onlySubtype = CRM_Utils_Request::retrieve('onlySubtype', 'Boolean');
5b15263a
EM
51 $this->assign('cdType', FALSE);
52 $this->assign('cgCount', $this->_groupCount);
53
f6ad11c1 54 $contactTypes = CRM_Contact_BAO_ContactType::contactTypeInfo();
55 if (array_key_exists($this->_type, $contactTypes)) {
56 $this->assign('contactId', $this->_entityId);
57 }
5b15263a
EM
58 if (!is_array($this->_subType) && strstr($this->_subType, CRM_Core_DAO::VALUE_SEPARATOR)) {
59 $this->_subType = str_replace(CRM_Core_DAO::VALUE_SEPARATOR, ',', trim($this->_subType, CRM_Core_DAO::VALUE_SEPARATOR));
60 }
4bd532e8 61 CRM_Custom_Form_CustomData::setGroupTree($this, $this->_subType, $this->_groupID, $this->_onlySubtype);
466e6ca5
CW
62
63 $this->assign('suppressForm', TRUE);
64 $this->controller->_generateQFKey = FALSE;
5b15263a
EM
65 }
66
67 /**
68 * Set defaults.
69 *
70 * @return array
71 */
72 public function setDefaultValues() {
73 $defaults = array();
74 CRM_Core_BAO_CustomGroup::setDefaults($this->_groupTree, $defaults, FALSE, FALSE, $this->get('action'));
75 return $defaults;
76 }
77
78 /**
79 * Build quick form.
80 */
81 public function buildQuickForm() {
82 $this->addElement('hidden', 'hidden_custom', 1);
83 $this->addElement('hidden', "hidden_custom_group_count[{$this->_groupID}]", $this->_groupCount);
84 CRM_Core_BAO_CustomGroup::buildQuickForm($this, $this->_groupTree);
85 }
86
87}