Merge pull request #18631 from eileenmcnaughton/ppp
[civicrm-core.git] / CRM / Contact / Form / Edit / Phone.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * Form helper class for a phone object.
20 */
21 class CRM_Contact_Form_Edit_Phone {
22
23 /**
24 * Build the form object elements for a phone object.
25 *
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.
32 */
33 public static function buildQuickForm(&$form, $addressBlockCount = NULL, $blockEdit = FALSE) {
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
45 $form->addField("phone[$blockId][phone_type_id]", [
46 'entity' => 'phone',
47 'class' => 'eight',
48 'placeholder' => NULL,
49 ]);
50 //main phone number with crm_phone class
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])]);
53 if (isset($form->_contactType) || $blockEdit) {
54 //Block type select
55 $form->addField("phone[$blockId][location_type_id]", [
56 'entity' => 'phone',
57 'class' => 'eight',
58 'placeholder' => NULL,
59 'option_url' => NULL,
60 ]);
61
62 //is_Primary radio
63 $js = ['id' => 'Phone_' . $blockId . '_IsPrimary', 'onClick' => 'singleSelect( this.id );', 'aria-label' => ts('Phone %1 is primary?', [1 => $blockId])];
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 }
69
70 }