Merge pull request #6457 from GinkgoFJG/angular_snippets
[civicrm-core.git] / CRM / Contact / Form / Inline / Website.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * form helper class for an Website object
38 */
39 class CRM_Contact_Form_Inline_Website extends CRM_Contact_Form_Inline {
40
41 /**
42 * Websitess of the contact that is been viewed.
43 */
44 private $_websites = array();
45
46 /**
47 * No of website blocks for inline edit.
48 */
49 private $_blockCount = 6;
50
51 /**
52 * Call preprocess.
53 */
54 public function preProcess() {
55 parent::preProcess();
56
57 //get all the existing websites
58 $params = array('contact_id' => $this->_contactId);
59 $values = array();
60 $this->_websites = CRM_Core_BAO_Website::getValues($params, $values);
61 }
62
63 /**
64 * Build the form object elements for website object.
65 *
66 * @return void
67 */
68 public function buildQuickForm() {
69 parent::buildQuickForm();
70
71 $totalBlocks = $this->_blockCount;
72 $actualBlockCount = 1;
73 if (count($this->_websites) > 1) {
74 $actualBlockCount = $totalBlocks = count($this->_websites);
75 if ($totalBlocks < $this->_blockCount) {
76 $additionalBlocks = $this->_blockCount - $totalBlocks;
77 $totalBlocks += $additionalBlocks;
78 }
79 else {
80 $actualBlockCount++;
81 $totalBlocks++;
82 }
83 }
84
85 $this->assign('actualBlockCount', $actualBlockCount);
86 $this->assign('totalBlocks', $totalBlocks);
87
88 $this->applyFilter('__ALL__', 'trim');
89
90 for ($blockId = 1; $blockId < $totalBlocks; $blockId++) {
91 CRM_Contact_Form_Edit_Website::buildQuickForm($this, $blockId, TRUE);
92 }
93
94 }
95
96 /**
97 * Set defaults for the form.
98 *
99 * @return array
100 */
101 public function setDefaultValues() {
102 $defaults = array();
103 if (!empty($this->_websites)) {
104 foreach ($this->_websites as $id => $value) {
105 $defaults['website'][$id] = $value;
106 }
107 }
108 else {
109 // set the default website type
110 $defaults['website'][1]['website_type_id'] = key(CRM_Core_OptionGroup::values('website_type',
111 FALSE, FALSE, FALSE, ' AND is_default = 1'
112 ));
113 }
114 return $defaults;
115 }
116
117 /**
118 * Process the form.
119 *
120 * @return void
121 */
122 public function postProcess() {
123 $params = $this->exportValues();
124
125 // Process / save websites
126 CRM_Core_BAO_Website::create($params['website'], $this->_contactId, TRUE);
127
128 $this->log();
129 $this->response();
130 }
131
132 }