Merge pull request #4700 from monishdeb/CRM-15709
[civicrm-core.git] / CRM / Contact / Form / Inline / Website.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
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 * @access public
68 */
69 public function buildQuickForm() {
70 parent::buildQuickForm();
71
72 $totalBlocks = $this->_blockCount;
73 $actualBlockCount = 1;
74 if (count($this->_websites) > 1) {
75 $actualBlockCount = $totalBlocks = count($this->_websites);
76 if ($totalBlocks < $this->_blockCount) {
77 $additionalBlocks = $this->_blockCount - $totalBlocks;
78 $totalBlocks += $additionalBlocks;
79 }
80 else {
81 $actualBlockCount++;
82 $totalBlocks++;
83 }
84 }
85
86 $this->assign('actualBlockCount', $actualBlockCount);
87 $this->assign('totalBlocks', $totalBlocks);
88
89 $this->applyFilter('__ALL__', 'trim');
90
91 for ($blockId = 1; $blockId < $totalBlocks; $blockId++) {
92 CRM_Contact_Form_Edit_Website::buildQuickForm($this, $blockId, TRUE);
93 }
94
95 }
96
97 /**
98 * Set defaults for the form
99 *
100 * @return array
101 * @access public
102 */
103 public function setDefaultValues() {
104 $defaults = array();
105 if (!empty($this->_websites)) {
106 foreach ($this->_websites as $id => $value) {
107 $defaults['website'][$id] = $value;
108 }
109 }
110 else {
111 // set the default website type
112 $defaults['website'][1]['website_type_id'] = key(CRM_Core_OptionGroup::values('website_type',
113 FALSE, FALSE, FALSE, ' AND is_default = 1'
114 ));
115 }
116 return $defaults;
117 }
118
119 /**
120 * Process the form
121 *
122 * @return void
123 * @access public
124 */
125 public function postProcess() {
126 $params = $this->exportValues();
127
128 // Process / save websites
129 CRM_Core_BAO_Website::create($params['website'], $this->_contactId, true);
130
131 $this->log();
132 $this->response();
133 }
134 }