phpcs - Fix error, "CONST keyword must be lowercase; expected const but found CONST"
[civicrm-core.git] / CRM / Contribute / Page / ManagePremiums.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 * Page for displaying list of Premiums
38 */
39class CRM_Contribute_Page_ManagePremiums extends CRM_Core_Page_Basic {
40
96f50de2
CW
41 public $useLivePageJS = TRUE;
42
6a488035
TO
43 /**
44 * The action links that we need to display for the browse screen
45 *
46 * @var array
47 * @static
48 */
49 static $_links = NULL;
50
51 /**
52 * Get BAO Name
53 *
54 * @return string Classname of BAO.
55 */
56 function getBAOName() {
57 return 'CRM_Contribute_BAO_ManagePremiums';
58 }
59
60 /**
61 * Get action Links
62 *
63 * @return array (reference) of action links
64 */
65 function &links() {
66 if (!(self::$_links)) {
67 self::$_links = array(
68 CRM_Core_Action::UPDATE => array(
69 'name' => ts('Edit'),
70 'url' => 'civicrm/admin/contribute/managePremiums',
71 'qs' => 'action=update&id=%%id%%&reset=1',
72 'title' => ts('Edit Premium'),
73 ),
74 CRM_Core_Action::PREVIEW => array(
75 'name' => ts('Preview'),
76 'url' => 'civicrm/admin/contribute/managePremiums',
77 'qs' => 'action=preview&id=%%id%%',
78 'title' => ts('Preview Premium'),
79 ),
80 CRM_Core_Action::DISABLE => array(
81 'name' => ts('Disable'),
4d17a233 82 'ref' => 'crm-enable-disable',
6a488035
TO
83 'title' => ts('Disable Premium'),
84 ),
85 CRM_Core_Action::ENABLE => array(
86 'name' => ts('Enable'),
4d17a233 87 'ref' => 'crm-enable-disable',
6a488035
TO
88 'title' => ts('Enable Premium'),
89 ),
90 CRM_Core_Action::DELETE => array(
91 'name' => ts('Delete'),
92 'url' => 'civicrm/admin/contribute/managePremiums',
93 'qs' => 'action=delete&id=%%id%%',
94 'title' => ts('Delete Premium'),
95 ),
96 );
97 }
98 return self::$_links;
99 }
100
101 /**
102 * Run the page.
103 *
104 * This method is called after the page is created. It checks for the
105 * type of action and executes that action.
106 * Finally it calls the parent's run method.
107 *
108 * @return void
109 * @access public
110 *
111 */
112 function run() {
113
114 // get the requested action
115 $action = CRM_Utils_Request::retrieve('action', 'String',
116 // default to 'browse'
117 $this, FALSE, 'browse'
118 );
119
120 // assign vars to templates
121 $this->assign('action', $action);
122 $id = CRM_Utils_Request::retrieve('id', 'Positive',
123 $this, FALSE, 0
124 );
125
126 // what action to take ?
127 if ($action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD | CRM_Core_Action::PREVIEW)) {
128 $this->edit($action, $id, TRUE);
129 }
130 // finally browse the custom groups
131 $this->browse();
132
133 // parent run
134 return parent::run();
135 }
136
137 /**
138 * Browse all custom data groups.
139 *
140 *
141 * @return void
142 * @access public
143 * @static
144 */
145 function browse() {
146 // get all custom groups sorted by weight
147 $premiums = array();
148 $dao = new CRM_Contribute_DAO_Product();
149 $dao->orderBy('name');
150 $dao->find();
151
152 while ($dao->fetch()) {
153 $premiums[$dao->id] = array();
154 CRM_Core_DAO::storeValues($dao, $premiums[$dao->id]);
155 // form all action links
156 $action = array_sum(array_keys($this->links()));
157
158
159 if ($dao->is_active) {
160 $action -= CRM_Core_Action::ENABLE;
161 }
162 else {
163 $action -= CRM_Core_Action::DISABLE;
164 }
165
166 $premiums[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(),
167 $action,
7d9f50a2 168 array('id' => $dao->id),
87dab4a4
AH
169 ts('more'),
170 FALSE,
171 'premium.manage.row',
172 'Premium',
173 $dao->id
6a488035
TO
174 );
175 //Financial Type
176 if( !empty( $dao->financial_type_id ) ){
177 require_once 'CRM/Core/DAO.php';
178 $premiums[$dao->id]['financial_type_id'] = CRM_Core_DAO::getFieldValue( 'CRM_Financial_DAO_FinancialType', $dao->financial_type_id, 'name' );
179 }
180 }
181 $this->assign('rows', $premiums);
182 }
183
184 /**
185 * Get name of edit form
186 *
187 * @return string Classname of edit form.
188 */
189 function editForm() {
190 return 'CRM_Contribute_Form_ManagePremiums';
191 }
192
193 /**
194 * Get edit form name
195 *
196 * @return string name of this page.
197 */
198 function editName() {
199 return 'Manage Premiums';
200 }
201
202 /**
203 * Get user context.
204 *
da6b46f4
EM
205 * @param null $mode
206 *
6a488035
TO
207 * @return string user context.
208 */
209 function userContext($mode = NULL) {
210 return 'civicrm/admin/contribute/managePremiums';
211 }
212}
213