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