First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
224
sites/all/modules/civicrm/CRM/Contribute/Page/Premium.php
Normal file
224
sites/all/modules/civicrm/CRM/Contribute/Page/Premium.php
Normal file
|
@ -0,0 +1,224 @@
|
|||
<?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
|
||||
*/
|
||||
|
||||
/**
|
||||
* Page for displaying list of Premiums.
|
||||
*/
|
||||
class CRM_Contribute_Page_Premium extends CRM_Core_Page_Basic {
|
||||
|
||||
/**
|
||||
* The action links that we need to display for the browse screen.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
static $_links = NULL;
|
||||
|
||||
/**
|
||||
* Get BAO Name.
|
||||
*
|
||||
* @return string
|
||||
* Classname of BAO.
|
||||
*/
|
||||
public function getBAOName() {
|
||||
return 'CRM_Contribute_BAO_Premium';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get action Links.
|
||||
*
|
||||
* @return array
|
||||
* (reference) of action links
|
||||
*/
|
||||
public function &links() {
|
||||
if (!(self::$_links)) {
|
||||
// helper variable for nicer formatting
|
||||
$deleteExtra = ts('Are you sure you want to remove this product form this page?');
|
||||
|
||||
self::$_links = array(
|
||||
CRM_Core_Action::UPDATE => array(
|
||||
'name' => ts('Edit'),
|
||||
'url' => 'civicrm/admin/contribute/addProductToPage',
|
||||
'qs' => 'action=update&id=%%id%%&pid=%%pid%%&reset=1',
|
||||
'title' => ts('Edit Premium'),
|
||||
),
|
||||
CRM_Core_Action::PREVIEW => array(
|
||||
'name' => ts('Preview'),
|
||||
'url' => 'civicrm/admin/contribute/addProductToPage',
|
||||
'qs' => 'action=preview&id=%%id%%&pid=%%pid%%',
|
||||
'title' => ts('Preview Premium'),
|
||||
),
|
||||
CRM_Core_Action::DELETE => array(
|
||||
'name' => ts('Remove'),
|
||||
'url' => 'civicrm/admin/contribute/addProductToPage',
|
||||
'qs' => 'action=delete&id=%%id%%&pid=%%pid%%',
|
||||
'extra' => 'onclick = "if (confirm(\'' . $deleteExtra . '\') ) this.href+=\'&confirmed=1\'; else return false;"',
|
||||
'title' => ts('Disable Premium'),
|
||||
),
|
||||
);
|
||||
}
|
||||
return self::$_links;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run the page.
|
||||
*
|
||||
* This method is called after the page is created. It checks for the
|
||||
* type of action and executes that action.
|
||||
* Finally it calls the parent's run method.
|
||||
*/
|
||||
public function run() {
|
||||
// get the requested action
|
||||
$action = CRM_Utils_Request::retrieve('action', 'String',
|
||||
// default to 'browse'
|
||||
$this, FALSE, 'browse'
|
||||
);
|
||||
|
||||
// assign vars to templates
|
||||
$this->assign('action', $action);
|
||||
$id = CRM_Utils_Request::retrieve('id', 'Positive',
|
||||
$this, FALSE, 0
|
||||
);
|
||||
$this->assign('id', $id);
|
||||
|
||||
$this->edit($action, $id, FALSE, FALSE);
|
||||
|
||||
// this is special case where we need to call browse to list premium
|
||||
if ($action == CRM_Core_Action::UPDATE) {
|
||||
$this->browse();
|
||||
}
|
||||
|
||||
// parent run
|
||||
return parent::run();
|
||||
}
|
||||
|
||||
/**
|
||||
* Browse function.
|
||||
*/
|
||||
public function browse() {
|
||||
// get all custom groups sorted by weight
|
||||
$premiums = array();
|
||||
$pageID = CRM_Utils_Request::retrieve('id', 'Positive',
|
||||
$this, FALSE, 0
|
||||
);
|
||||
$dao = new CRM_Contribute_DAO_Premium();
|
||||
$dao->entity_table = 'civicrm_contribution_page';
|
||||
$dao->entity_id = $pageID;
|
||||
$dao->find(TRUE);
|
||||
$premiumID = $dao->id;
|
||||
$this->assign('products', FALSE);
|
||||
$this->assign('id', $pageID);
|
||||
if (!$premiumID) {
|
||||
return;
|
||||
}
|
||||
|
||||
$dao = new CRM_Contribute_DAO_PremiumsProduct();
|
||||
$dao->premiums_id = $premiumID;
|
||||
$dao->orderBy('weight');
|
||||
$dao->find();
|
||||
|
||||
while ($dao->fetch()) {
|
||||
$productDAO = new CRM_Contribute_DAO_Product();
|
||||
$productDAO->id = $dao->product_id;
|
||||
$productDAO->is_active = 1;
|
||||
|
||||
if ($productDAO->find(TRUE)) {
|
||||
$premiums[$productDAO->id] = array();
|
||||
$premiums[$productDAO->id]['weight'] = $dao->weight;
|
||||
CRM_Core_DAO::storeValues($productDAO, $premiums[$productDAO->id]);
|
||||
|
||||
$action = array_sum(array_keys($this->links()));
|
||||
|
||||
$premiums[$dao->product_id]['action'] = CRM_Core_Action::formLink(self::links(), $action,
|
||||
array('id' => $pageID, 'pid' => $dao->id),
|
||||
ts('more'),
|
||||
FALSE,
|
||||
'premium.contributionpage.row',
|
||||
'Premium',
|
||||
$dao->id
|
||||
);
|
||||
//Financial Type
|
||||
if (!empty($dao->financial_type_id)) {
|
||||
$premiums[$productDAO->id]['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialType', $dao->financial_type_id, 'name');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (count(CRM_Contribute_PseudoConstant::products($pageID)) == 0) {
|
||||
$this->assign('products', FALSE);
|
||||
}
|
||||
else {
|
||||
$this->assign('products', TRUE);
|
||||
}
|
||||
|
||||
// Add order changing widget to selector
|
||||
$returnURL = CRM_Utils_System::url('civicrm/admin/contribute/premium', "reset=1&action=update&id={$pageID}");
|
||||
$filter = "premiums_id = {$premiumID}";
|
||||
CRM_Utils_Weight::addOrder($premiums, 'CRM_Contribute_DAO_PremiumsProduct',
|
||||
'id', $returnURL, $filter
|
||||
);
|
||||
$this->assign('rows', $premiums);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name of edit form.
|
||||
*
|
||||
* @return string
|
||||
* Classname of edit form.
|
||||
*/
|
||||
public function editForm() {
|
||||
return 'CRM_Contribute_Form_ContributionPage_Premium';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get edit form name.
|
||||
*
|
||||
* @return string
|
||||
* name of this page.
|
||||
*/
|
||||
public function editName() {
|
||||
return 'Configure Premiums';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get user context.
|
||||
*
|
||||
* @param null $mode
|
||||
*
|
||||
* @return string
|
||||
* user context.
|
||||
*/
|
||||
public function userContext($mode = NULL) {
|
||||
return CRM_Utils_System::currentPath();
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue