Merge pull request #4837 from eileenmcnaughton/CRM-15779
[civicrm-core.git] / CRM / Contact / Form / Inline / Website.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * form helper class for an Website object
38 */
39class CRM_Contact_Form_Inline_Website extends CRM_Contact_Form_Inline {
40
41 /**
100fef9d 42 * Websitess of the contact that is been viewed
6a488035
TO
43 */
44 private $_websites = array();
45
46 /**
47 * No of website blocks for inline edit
48 */
49 private $_blockCount = 6;
50
51 /**
100fef9d 52 * Call preprocess
6a488035
TO
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 /**
c490a46a 64 * Build the form object elements for website object
6a488035
TO
65 *
66 * @return void
6a488035
TO
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 /**
100fef9d 97 * Set defaults for the form
6a488035
TO
98 *
99 * @return array
6a488035
TO
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 }
dcb07045
PN
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 }
6a488035
TO
114 return $defaults;
115 }
116
117 /**
100fef9d 118 * Process the form
6a488035
TO
119 *
120 * @return void
6a488035
TO
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}