First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
184
sites/all/modules/civicrm/CRM/PCP/Form/Contribute.php
Normal file
184
sites/all/modules/civicrm/CRM/PCP/Form/Contribute.php
Normal file
|
@ -0,0 +1,184 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @package CRM
|
||||
* @copyright CiviCRM LLC (c) 2004-2017
|
||||
* $Id$
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* This class generates form components for Tell A Friend
|
||||
*
|
||||
*/
|
||||
class CRM_PCP_Form_Contribute extends CRM_Contribute_Form_ContributionPage {
|
||||
|
||||
/**
|
||||
* The type of pcp component.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $_component = 'contribute';
|
||||
|
||||
public function preProcess() {
|
||||
parent::preProcess();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set default values for the form. Note that in edit/view mode
|
||||
* the default values are retrieved from the database
|
||||
*
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setDefaultValues() {
|
||||
$defaults = array();
|
||||
|
||||
if (isset($this->_id)) {
|
||||
$params = array('entity_id' => $this->_id, 'entity_table' => 'civicrm_contribution_page');
|
||||
CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCPBlock', $params, $defaults);
|
||||
$defaults['pcp_active'] = CRM_Utils_Array::value('is_active', $defaults);
|
||||
// Assign contribution page ID to pageId for referencing in PCP.hlp - since $id is overwritten there. dgg
|
||||
$this->assign('pageId', $this->_id);
|
||||
}
|
||||
|
||||
if (empty($defaults['id'])) {
|
||||
$defaults['target_entity_type'] = 'contribute';
|
||||
$defaults['is_approval_needed'] = 1;
|
||||
$defaults['is_tellfriend_enabled'] = 1;
|
||||
$defaults['tellfriend_limit'] = 5;
|
||||
$defaults['link_text'] = ts('Create your own fundraising page');
|
||||
$defaults['owner_notify_id'] = CRM_Core_OptionGroup::getDefaultValue('pcp_owner_notify');
|
||||
|
||||
if ($ccReceipt = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $this->_id, 'cc_receipt')) {
|
||||
$defaults['notify_email'] = $ccReceipt;
|
||||
}
|
||||
}
|
||||
return $defaults;
|
||||
}
|
||||
|
||||
/**
|
||||
* Build the form object.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function buildQuickForm() {
|
||||
$this->_last = TRUE;
|
||||
CRM_PCP_BAO_PCP::buildPCPForm($this);
|
||||
|
||||
$this->addElement('checkbox', 'pcp_active', ts('Enable Personal Campaign Pages? (for this contribution page)'), NULL, array('onclick' => "return showHideByValue('pcp_active',true,'pcpFields','table-row','radio',false);"));
|
||||
|
||||
parent::buildQuickForm();
|
||||
$this->addFormRule(array('CRM_PCP_Form_Contribute', 'formRule'), $this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Validation.
|
||||
*
|
||||
* @param array $params
|
||||
* (ref.) an assoc array of name/value pairs.
|
||||
*
|
||||
* @param $files
|
||||
* @param $self
|
||||
*
|
||||
* @return bool|array
|
||||
* mixed true or array of errors
|
||||
*/
|
||||
public static function formRule($params, $files, $self) {
|
||||
$errors = array();
|
||||
if (!empty($params['is_active'])) {
|
||||
|
||||
if (!empty($params['is_tellfriend_enabled']) &&
|
||||
(CRM_Utils_Array::value('tellfriend_limit', $params) <= 0)
|
||||
) {
|
||||
$errors['tellfriend_limit'] = ts('if Tell Friend is enabled, Maximum recipients limit should be greater than zero.');
|
||||
}
|
||||
if (empty($params['supporter_profile_id'])) {
|
||||
$errors['supporter_profile_id'] = ts('Supporter profile is a required field.');
|
||||
}
|
||||
else {
|
||||
if (CRM_PCP_BAO_PCP::checkEmailProfile($params['supporter_profile_id'])) {
|
||||
$errors['supporter_profile_id'] = ts('Profile is not configured with Email address.');
|
||||
}
|
||||
}
|
||||
|
||||
if ($emails = CRM_Utils_Array::value('notify_email', $params)) {
|
||||
$emailArray = explode(',', $emails);
|
||||
foreach ($emailArray as $email) {
|
||||
if ($email && !CRM_Utils_Rule::email(trim($email))) {
|
||||
$errors['notify_email'] = ts('A valid Notify Email address must be specified');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return empty($errors) ? TRUE : $errors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Process the form submission.
|
||||
*
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function postProcess() {
|
||||
// get the submitted form values.
|
||||
$params = $this->controller->exportValues($this->_name);
|
||||
|
||||
// Source
|
||||
$params['entity_table'] = 'civicrm_contribution_page';
|
||||
$params['entity_id'] = $this->_id;
|
||||
|
||||
// Target
|
||||
$params['target_entity_type'] = CRM_Utils_Array::value('target_entity_type', $params, 'contribute');
|
||||
$params['target_entity_id'] = $this->_id;
|
||||
|
||||
$dao = new CRM_PCP_DAO_PCPBlock();
|
||||
$dao->entity_table = $params['entity_table'];
|
||||
$dao->entity_id = $this->_id;
|
||||
$dao->find(TRUE);
|
||||
$params['id'] = $dao->id;
|
||||
$params['is_active'] = CRM_Utils_Array::value('pcp_active', $params, FALSE);
|
||||
$params['is_approval_needed'] = CRM_Utils_Array::value('is_approval_needed', $params, FALSE);
|
||||
$params['is_tellfriend_enabled'] = CRM_Utils_Array::value('is_tellfriend_enabled', $params, FALSE);
|
||||
|
||||
CRM_PCP_BAO_PCPBlock::create($params);
|
||||
|
||||
parent::endPostProcess();
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a descriptive name for the page, used in wizard header
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getTitle() {
|
||||
return ts('Enable Personal Campaign Pages');
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue