Merge pull request #18286 from sunilpawar/ui_30
[civicrm-core.git] / CRM / Contact / Form / Task / AddToIndividual.php
CommitLineData
6b5f37d3 1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6b5f37d3 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6b5f37d3 9 +--------------------------------------------------------------------+
10 */
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6b5f37d3 16 */
17
18/**
19 * This class provides the functionality to add contact(s) to Individual.
20 */
21class CRM_Contact_Form_Task_AddToIndividual extends CRM_Contact_Form_Task_AddToParentClass {
22
23 /**
24 * Build the form object.
25 */
26 public function buildQuickForm() {
229b180c 27 $this->set('contactType', 'Individual');
28 $this->assign('contactType', 'Individual');
29 parent::buildQuickForm();
6b5f37d3 30 }
31
32 /**
33 * Process the form after the input has been submitted and validated.
34 */
35 public function postProcess() {
b92af807 36 parent::postProcess();
6b5f37d3 37 }
38
39}