CIVICRM-1391 Update Smart Group form unsets the existing Group Types for the Group
[civicrm-core.git] / CRM / Contact / Form / Edit / Phone.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 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 |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
5a409b50 19 * Form helper class for a phone object.
6a488035
TO
20 */
21class CRM_Contact_Form_Edit_Phone {
22
23 /**
ee0ce2ef 24 * Build the form object elements for a phone object.
6a488035 25 *
77c5b619
TO
26 * @param CRM_Core_Form $form
27 * Reference to the form object.
28 * @param int $addressBlockCount
29 * Block number to build.
30 * @param bool $blockEdit
31 * Is it block edit.
6a488035 32 */
00be9182 33 public static function buildQuickForm(&$form, $addressBlockCount = NULL, $blockEdit = FALSE) {
6a488035
TO
34 // passing this via the session is AWFUL. we need to fix this
35 if (!$addressBlockCount) {
36 $blockId = ($form->get('Phone_Block_Count')) ? $form->get('Phone_Block_Count') : 1;
37 }
38 else {
39 $blockId = $addressBlockCount;
40 }
41
42 $form->applyFilter('__ALL__', 'trim');
43
44 //phone type select
be2fb01f 45 $form->addField("phone[$blockId][phone_type_id]", [
a6c04811
TM
46 'entity' => 'phone',
47 'class' => 'eight',
48 'placeholder' => NULL,
be2fb01f 49 ]);
6a488035 50 //main phone number with crm_phone class
be2fb01f
CW
51 $form->addField("phone[$blockId][phone]", ['entity' => 'phone', 'class' => 'crm_phone twelve', 'aria-label' => ts('Phone %1', [1 => $blockId])]);
52 $form->addField("phone[$blockId][phone_ext]", ['entity' => 'phone', 'aria-label' => ts('Phone Extension %1', [1 => $blockId])]);
6a488035
TO
53 if (isset($form->_contactType) || $blockEdit) {
54 //Block type select
be2fb01f 55 $form->addField("phone[$blockId][location_type_id]", [
a6c04811 56 'entity' => 'phone',
69078420
SL
57 'class' => 'eight',
58 'placeholder' => NULL,
59 'option_url' => NULL,
60 ]);
6a488035
TO
61
62 //is_Primary radio
be2fb01f 63 $js = ['id' => 'Phone_' . $blockId . '_IsPrimary', 'onClick' => 'singleSelect( this.id );', 'aria-label' => ts('Phone %1 is primary?', [1 => $blockId])];
6a488035
TO
64 $form->addElement('radio', "phone[$blockId][is_primary]", '', '', '1', $js);
65 }
66 // TODO: set this up as a group, we need a valid phone_type_id if we have a phone number
67 // $form->addRule( "location[$locationId][phone][$locationId][phone]", ts('Phone number is not valid.'), 'phone' );
68 }
96025800 69
6a488035 70}