3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * This class generates form components for Premiums
40 class CRM_Contribute_Form_ManagePremiums
extends CRM_Contribute_Form
{
43 * Function to pre process the form
49 public function preProcess() {
54 * This function sets the default values for the form. Manage Premiums that in edit/view mode
55 * the default values are retrieved from the database
61 function setDefaultValues() {
62 $defaults = parent
::setDefaultValues();
64 $params = array('id' => $this->_id
);
65 CRM_Contribute_BAO_ManagePremiums
::retrieve($params, $tempDefaults);
66 $imageUrl = (isset($tempDefaults['image'])) ?
$tempDefaults['image'] : "";
67 if (isset($tempDefaults['image']) && isset($tempDefaults['thumbnail'])) {
68 $defaults['imageUrl'] = $tempDefaults['image'];
69 $defaults['thumbnailUrl'] = $tempDefaults['thumbnail'];
70 $defaults['imageOption'] = 'thumbnail';
71 // assign thumbnailUrl to template so we can display current image in update mode
72 $this->assign('thumbnailUrl', $defaults['thumbnailUrl']);
75 $defaults['imageOption'] = 'noImage';
77 if (isset($tempDefaults['thumbnail']) && isset($tempDefaults['image'])) {
78 $this->assign('thumbURL', $tempDefaults['thumbnail']);
79 $this->assign('imageURL', $tempDefaults['image']);
81 if (isset($tempDefaults['period_type'])) {
82 $this->assign('showSubscriptions', TRUE);
90 * Function to build the form
95 public function buildQuickForm() {
96 parent
::buildQuickForm( );
97 $this->setPageTitle(ts('Premium Product'));
99 if ($this->_action
& CRM_Core_Action
::PREVIEW
) {
100 CRM_Contribute_BAO_Premium
::buildPremiumPreviewBlock($this, $this->_id
);
104 if ($this->_action
& CRM_Core_Action
::DELETE
) {
108 $this->applyFilter('__ALL__', 'trim');
109 $this->add('text', 'name', ts('Name'), CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Product', 'name'), TRUE);
110 $this->addRule('name', ts('A product with this name already exists. Please select another name.'), 'objectExists', array('CRM_Contribute_DAO_Product', $this->_id
));
111 $this->add('text', 'sku', ts('SKU'), CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Product', 'sku'));
113 $this->add('textarea', 'description', ts('Description'), 'rows=3, cols=60');
115 $image['image'] = $this->createElement('radio', NULL, NULL, ts('Upload from my computer'), 'image', 'onclick="add_upload_file_block(\'image\');');
116 $image['thumbnail'] = $this->createElement('radio', NULL, NULL, ts('Display image and thumbnail from these locations on the web:'), 'thumbnail', 'onclick="add_upload_file_block(\'thumbnail\');');
117 $image['default_image'] = $this->createElement('radio', NULL, NULL, ts('Use default image'), 'default_image', 'onclick="add_upload_file_block(\'default\');');
118 $image['noImage'] = $this->createElement('radio', NULL, NULL, ts('Do not display an image'), 'noImage', 'onclick="add_upload_file_block(\'noImage\');');
120 $this->addGroup($image, 'imageOption', ts('Premium Image'));
121 $this->addRule('imageOption', ts('Please select an option for the premium image.'), 'required');
123 $this->addElement('text', 'imageUrl', ts('Image URL'));
124 $this->addElement('text', 'thumbnailUrl', ts('Thumbnail URL'));
126 $this->add('file', 'uploadFile', ts('Image File Name'), 'onChange="select_option();"');
129 $this->add('text', 'price', ts('Market Value'), CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Product', 'price'), TRUE);
130 $this->addRule('price', ts('Please enter the Market Value for this product.'), 'money');
132 $this->add('text', 'cost', ts('Actual Cost of Product'), CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Product', 'cost'));
133 $this->addRule('price', ts('Please enter the Actual Cost of Product.'), 'money');
135 $this->add('text', 'min_contribution', ts('Minimum Contribution Amount'), CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Product', 'min_contribution'), TRUE);
136 $this->addRule('min_contribution', ts('Please enter a monetary value for the Minimum Contribution Amount.'), 'money');
138 $this->add('textarea', 'options', ts('Options'), 'rows=3, cols=60');
140 $this->add('select', 'period_type', ts('Period Type'), array('' => '- select -', 'rolling' => 'Rolling', 'fixed' => 'Fixed'));
142 $this->add('text', 'fixed_period_start_day', ts('Fixed Period Start Day'), CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Product', 'fixed_period_start_day'));
144 $this->add('Select', 'duration_unit', ts('Duration Unit'), array('' => '- select period -') + CRM_Core_SelectValues
::getPremiumUnits());
146 $this->add('text', 'duration_interval', ts('Duration'), CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Product', 'duration_interval'));
148 $this->add('Select', 'frequency_unit', ts('Frequency Unit'), array('' => '- select period -') + CRM_Core_SelectValues
::getPremiumUnits());
150 $this->add('text', 'frequency_interval', ts('Frequency'), CRM_Core_DAO
::getAttribute('CRM_Contribute_DAO_Product', 'frequency_interval'));
152 //Financial Type CRM-11106
153 $financialType = CRM_Contribute_PseudoConstant
::financialType( );
154 $premiumFinancialType = array();
155 CRM_Core_PseudoConstant
::populate(
156 $premiumFinancialType,
157 'CRM_Financial_DAO_EntityFinancialAccount',
159 $retrieve = 'entity_id',
161 'account_relationship = 8'
164 $costFinancialType = array();
165 CRM_Core_PseudoConstant
::populate(
167 'CRM_Financial_DAO_EntityFinancialAccount',
169 $retrieve = 'entity_id',
171 'account_relationship = 7'
173 $productFinancialType = array_intersect($costFinancialType, $premiumFinancialType);
174 foreach( $financialType as $key => $financialTypeName ){
175 if(!in_array( $key, $productFinancialType))
176 unset( $financialType[$key] );
178 if( count( $financialType ) ){
179 $this->assign( 'financialType', $financialType );
184 ts( 'Financial Type' ),
185 array(''=>ts('- select -')) +
$financialType
188 $this->add('checkbox', 'is_active', ts('Enabled?'));
190 $this->addFormRule(array('CRM_Contribute_Form_ManagePremiums', 'formRule'));
192 $this->addButtons(array(
195 'name' => ts('Save'),
200 'name' => ts('Cancel'),
204 $this->assign('productId', $this->_id
);
208 * Function for validation
210 * @param array $params (ref.) an assoc array of name/value pairs
214 * @return mixed true or array of errors
218 public static function formRule($params, $files) {
219 if (isset($params['imageOption'])) {
220 if ($params['imageOption'] == 'thumbnail') {
221 if (!$params['imageUrl']) {
222 $errors['imageUrl'] = ts('Image URL is Required');
224 if (!$params['thumbnailUrl']) {
225 $errors['thumbnailUrl'] = ts('Thumbnail URL is Required');
229 // CRM-13231 financial type required if product has cost
230 if (!empty($params['cost']) && empty($params['financial_type_id'])) {
231 $errors['financial_type_id'] = ts('Financial Type is required for product having cost.');
233 $fileLocation = $files['uploadFile']['tmp_name'];
234 if ($fileLocation != "") {
235 list($width, $height) = getimagesize($fileLocation);
237 if (($width < 80 ||
$width > 500) ||
($height < 80 ||
$height > 500)) {
238 //$errors ['uploadFile'] = "Please Enter files with dimensions between 80 x 80 and 500 x 500," . " Dimensions of this file is ".$width."X".$height;
242 if (!$params['period_type']) {
243 if ($params['fixed_period_start_day'] ||
$params['duration_unit'] ||
$params['duration_interval'] ||
244 $params['frequency_unit'] ||
$params['frequency_interval']
246 $errors['period_type'] = ts('Please select the Period Type for this subscription or service.');
250 if ($params['period_type'] == 'fixed' && !$params['fixed_period_start_day']) {
251 $errors['fixed_period_start_day'] = ts('Please enter a Fixed Period Start Day for this subscription or service.');
254 if ($params['duration_unit'] && !$params['duration_interval']) {
255 $errors['duration_interval'] = ts('Please enter the Duration Interval for this subscription or service.');
258 if ($params['duration_interval'] && !$params['duration_unit']) {
259 $errors['duration_unit'] = ts('Please enter the Duration Unit for this subscription or service.');
262 if ($params['frequency_interval'] && !$params['frequency_unit']) {
263 $errors['frequency_unit'] = ts('Please enter the Frequency Unit for this subscription or service.');
266 if ($params['frequency_unit'] && !$params['frequency_interval']) {
267 $errors['frequency_interval'] = ts('Please enter the Frequency Interval for this subscription or service.');
271 return empty($errors) ?
TRUE : $errors;
275 * Function to process the form
281 public function postProcess() {
283 if ($this->_action
& CRM_Core_Action
::PREVIEW
) {
287 if ($this->_action
& CRM_Core_Action
::DELETE
) {
288 CRM_Contribute_BAO_ManagePremiums
::del($this->_id
);
289 CRM_Core_Session
::setStatus(ts('Selected Premium Product type has been deleted.'), ts('Deleted'), 'info');
292 $params = $this->controller
->exportValues($this->_name
);
293 $imageFile = CRM_Utils_Array
::value('uploadFile', $params);
294 $imageFile = $imageFile['name'];
296 $config = CRM_Core_Config
::singleton();
300 // store the submitted values in an array
303 if (CRM_Utils_Array
::value('imageOption', $params, FALSE)) {
304 $value = CRM_Utils_Array
::value('imageOption', $params, FALSE);
305 if ($value == 'image') {
307 // to check wether GD is installed or not
308 $gdSupport = CRM_Utils_System
::getModuleSetting('gd', 'GD Support');
312 $params['image'] = $this->_resizeImage($imageFile, "_full", 200, 200);
313 $params['thumbnail'] = $this->_resizeImage($imageFile, "_thumb", 50, 50);
317 $params['image'] = $config->resourceBase
. 'i/contribute/default_premium.jpg';
318 $params['thumbnail'] = $config->resourceBase
. 'i/contribute/default_premium_thumb.jpg';
320 } elseif ($value == 'thumbnail') {
321 $params['image'] = $params['imageUrl'];
322 $params['thumbnail'] = $params['thumbnailUrl'];
323 } elseif ($value == 'default_image') {
324 $url = parse_url($config->userFrameworkBaseURL
);
325 $params['image'] = $config->resourceBase
. 'i/contribute/default_premium.jpg';
326 $params['thumbnail'] = $config->resourceBase
. 'i/contribute/default_premium_thumb.jpg';
328 $params['image'] = "";
329 $params['thumbnail'] = "";
333 if ($this->_action
& CRM_Core_Action
::UPDATE
) {
334 $ids['premium'] = $this->_id
;
337 // fix the money fields
339 'cost', 'price', 'min_contribution') as $f) {
340 $params[$f] = CRM_Utils_Rule
::cleanMoney($params[$f]);
343 $premium = CRM_Contribute_BAO_ManagePremiums
::add($params, $ids);
345 CRM_Core_Session
::setStatus(ts('No thumbnail of your image was created because the GD image library is not currently compiled in your PHP installation. Product is currently configured to use default thumbnail image. If you have a local thumbnail image you can upload it separately and input the thumbnail URL by editing this premium.'), ts('Notice'), 'alert');
348 CRM_Core_Session
::setStatus(ts("The Premium '%1' has been saved.", array(1 => $premium->name
)), ts('Saved'), 'success');
354 * Resize a premium image to a different size
359 * @param $resizedName
363 * @return Path to image
365 private function _resizeImage($filename, $resizedName, $width, $height) {
366 // figure out the new filename
367 $pathParts = pathinfo($filename);
368 $newFilename = $pathParts['dirname']."/".$pathParts['filename'].$resizedName.".".$pathParts['extension'];
370 // get image about original image
371 $imageInfo = getimagesize($filename);
372 $widthOrig = $imageInfo[0];
373 $heightOrig = $imageInfo[1];
374 $image = imagecreatetruecolor($width, $height);
375 if($imageInfo['mime'] == 'image/gif') {
376 $source = imagecreatefromgif($filename);
377 } elseif($imageInfo['mime'] == 'image/png') {
378 $source = imagecreatefrompng($filename);
380 $source = imagecreatefromjpeg($filename);
384 imagecopyresized($image, $source, 0, 0, 0, 0, $width, $height, $widthOrig, $heightOrig);
386 // save the resized image
387 $fp = fopen($newFilename, 'w+');
390 $image_buffer = ob_get_contents();
392 ImageDestroy($image);
393 fwrite($fp, $image_buffer);
397 // return the URL to link to
398 $config = CRM_Core_Config
::singleton();
399 return $config->imageUploadURL
.basename($newFilename);