Merge pull request #5503 from civicrm/4.6
[civicrm-core.git] / CRM / Contact / Form / Task / AddToHousehold.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 * This class provides the functionality to add contact(s) to Household.
30 */
31 class CRM_Contact_Form_Task_AddToHousehold extends CRM_Contact_Form_Task_AddToParentClass {
32
33 /**
34 * Build the form object.
35 */
36 public function buildQuickForm() {
37
38 CRM_Utils_System::setTitle(ts('Add Members to Household'));
39 $this->addElement('text', 'name', ts('Find Target Household'));
40
41 $this->add('select', 'relationship_type_id', ts('Relationship Type'),
42 array(
43 '' => ts('- select -'),
44 ) +
45 CRM_Contact_BAO_Relationship::getRelationType("Household"), TRUE
46 );
47
48 $searchRows = $this->get('searchRows');
49 $searchCount = $this->get('searchCount');
50 if ($searchRows) {
51 $checkBoxes = array();
52 $checkFlag = 0;
53 foreach ($searchRows as $id => $row) {
54 if (!$checkFlag) {
55 $checkFlag = $id;
56 }
57 $checkBoxes[$id] = $this->createElement('radio', NULL, NULL, NULL, $id);
58 }
59 $this->addGroup($checkBoxes, 'contact_check');
60 if ($checkFlag) {
61 $checkBoxes[$checkFlag]->setChecked(TRUE);
62 }
63 $this->assign('searchRows', $searchRows);
64 }
65
66 $this->assign('searchCount', $searchCount);
67 $this->assign('searchDone', $this->get('searchDone'));
68 $this->assign('contact_type_display', ts('Household'));
69 $this->addElement('submit', $this->getButtonName('refresh'), ts('Search'), array('class' => 'crm-form-submit'));
70 $this->addElement('submit', $this->getButtonName('cancel'), ts('Cancel'), array('class' => 'crm-form-submit'));
71
72 $this->addButtons(array(
73 array(
74 'type' => 'next',
75 'name' => ts('Add to Household'),
76 'isDefault' => TRUE,
77 ),
78 array(
79 'type' => 'cancel',
80 'name' => ts('Cancel'),
81 ),
82 )
83 );
84 }
85
86 /**
87 * Process the form after the input has been submitted and validated.
88 */
89 public function postProcess() {
90
91 // store the submitted values in an array
92 $this->params = $this->controller->exportValues($this->_name);
93
94 $this->set('searchDone', 0);
95 if (!empty($_POST['_qf_AddToHousehold_refresh'])) {
96 $searchParams['contact_type'] = array('Household' => 'Household');
97 $searchParams['rel_contact'] = $this->params['name'];
98 $this->search($this, $searchParams);
99 $this->set('searchDone', 1);
100 return;
101 }
102
103 $this->addRelationships();
104 }
105
106 }