more comment fixes
[civicrm-core.git] / CRM / Contact / Form / Location.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33class CRM_Contact_Form_Location {
34
35 /**
fe482240 36 * Set variables up before form is built.
6a488035 37 *
c490a46a 38 * @param CRM_Core_Form $form
6a488035 39 */
00be9182 40 public static function preProcess(&$form) {
6a488035
TO
41 $form->_addBlockName = CRM_Utils_Request::retrieve('block', 'String', CRM_Core_DAO::$_nullObject);
42 $additionalblockCount = CRM_Utils_Request::retrieve('count', 'Positive', CRM_Core_DAO::$_nullObject);
43
44 $form->assign('addBlock', FALSE);
45 if ($form->_addBlockName && $additionalblockCount) {
46 $form->assign('addBlock', TRUE);
47 $form->assign('blockName', $form->_addBlockName);
48 $form->assign('blockId', $additionalblockCount);
49 $form->set($form->_addBlockName . '_Block_Count', $additionalblockCount);
50 }
51
1f7c9105
TM
52 if (is_a($form, 'CRM_Event_Form_ManageEvent_Location')
53 || is_a($form, 'CRM_Contact_Form_Domain')) {
6ea503d4
TO
54 $form->_blocks = array(
55 'Address' => ts('Address'),
6a488035
TO
56 'Email' => ts('Email'),
57 'Phone' => ts('Phone'),
58 );
59 }
60
61 $form->assign('blocks', $form->_blocks);
9b01cb89 62 $form->assign('className', CRM_Utils_System::getClassName($form));
6a488035
TO
63
64 // get address sequence.
65 if (!$addressSequence = $form->get('addressSequence')) {
66 $addressSequence = CRM_Core_BAO_Address::addressSequence();
67 $form->set('addressSequence', $addressSequence);
68 }
69 $form->assign('addressSequence', $addressSequence);
70 }
71
72 /**
fe482240 73 * Build the form object.
6a488035 74 *
c490a46a 75 * @param CRM_Core_Form $form
6a488035 76 */
00be9182 77 public static function buildQuickForm(&$form) {
6a488035
TO
78 // required for subsequent AJAX requests.
79 $ajaxRequestBlocks = array();
80 $generateAjaxRequest = 0;
81
82 //build 1 instance of all blocks, without using ajax ...
83 foreach ($form->_blocks as $blockName => $label) {
d3e86119 84 require_once str_replace('_', DIRECTORY_SEPARATOR, 'CRM_Contact_Form_Edit_' . $blockName) . '.php';
6a488035
TO
85 $name = strtolower($blockName);
86
87 $instances = array(1);
a7488080 88 if (!empty($_POST[$name]) && is_array($_POST[$name])) {
6a488035
TO
89 $instances = array_keys($_POST[$name]);
90 }
8cc574cf 91 elseif (property_exists($form, '_values') && !empty($form->_values[$name]) && is_array($form->_values[$name])) {
6a488035
TO
92 $instances = array_keys($form->_values[$name]);
93 }
94
95 foreach ($instances as $instance) {
96 if ($instance == 1) {
97 $form->assign('addBlock', FALSE);
98 $form->assign('blockId', $instance);
99 }
100 else {
101 //we are going to build other block instances w/ AJAX
102 $generateAjaxRequest++;
103 $ajaxRequestBlocks[$blockName][$instance] = TRUE;
104 }
105
106 $form->set($blockName . '_Block_Count', $instance);
e52506b0 107 $formName = 'CRM_Contact_Form_Edit_' . $blockName;
481a74f4 108 $formName::buildQuickForm($form);
6a488035
TO
109 }
110 }
111
112 //assign to generate AJAX request for building extra blocks.
113 $form->assign('generateAjaxRequest', $generateAjaxRequest);
114 $form->assign('ajaxRequestBlocks', $ajaxRequestBlocks);
115 }
96025800 116
6a488035 117}