CRM-13863 - Consolidate livePage.js handling in parent page class
[civicrm-core.git] / CRM / Admin / Page / ParticipantStatus.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35 class CRM_Admin_Page_ParticipantStatus extends CRM_Core_Page_Basic {
36
37 public $useLivePageJS = TRUE;
38 function getBAOName() {
39 return 'CRM_Event_BAO_ParticipantStatusType';
40 }
41
42 function &links() {
43 static $links = NULL;
44 if ($links === NULL) {
45 $links = array(
46 CRM_Core_Action::UPDATE => array(
47 'name' => ts('Edit'),
48 'url' => 'civicrm/admin/participant_status',
49 'qs' => 'action=update&id=%%id%%&reset=1',
50 'title' => ts('Edit Status'),
51 ),
52 CRM_Core_Action::DELETE => array(
53 'name' => ts('Delete'),
54 'url' => 'civicrm/admin/participant_status',
55 'qs' => 'action=delete&id=%%id%%',
56 'title' => ts('Delete Status'),
57 ),
58 CRM_Core_Action::DISABLE => array(
59 'name' => ts('Disable'),
60 'ref' => 'crm-enable-disable',
61 'title' => ts('Disable Status'),
62 ),
63 CRM_Core_Action::ENABLE => array(
64 'name' => ts('Enable'),
65 'ref' => 'crm-enable-disable',
66 'title' => ts('Enable Status'),
67 ),
68 );
69 }
70 return $links;
71 }
72
73 function browse() {
74 $statusTypes = array();
75
76 $dao = new CRM_Event_DAO_ParticipantStatusType;
77 $dao->orderBy('weight');
78 $dao->find();
79
80 $visibilities = CRM_Core_PseudoConstant::visibility();
81
82 // these statuses are reserved, but disabled by default - so should be disablable after being enabled
83 $disablable = array('On waitlist', 'Awaiting approval', 'Pending from waitlist', 'Pending from approval', 'Rejected');
84
85 while ($dao->fetch()) {
86 CRM_Core_DAO::storeValues($dao, $statusTypes[$dao->id]);
87 $action = array_sum(array_keys($this->links()));
88 if ($dao->is_reserved) {
89 $action -= CRM_Core_Action::DELETE;
90 if (!in_array($dao->name, $disablable)) {
91 $action -= CRM_Core_Action::DISABLE;
92 }
93 }
94 $action -= $dao->is_active ? CRM_Core_Action::ENABLE : CRM_Core_Action::DISABLE;
95 $statusTypes[$dao->id]['action'] = CRM_Core_Action::formLink(
96 self::links(),
97 $action,
98 array('id' => $dao->id),
99 ts('more'),
100 FALSE,
101 'participantStatusType.manage.action',
102 'ParticipantStatusType',
103 $dao->id
104 );
105 $statusTypes[$dao->id]['visibility'] = $visibilities[$dao->visibility_id];
106 }
107 $this->assign('rows', $statusTypes);
108 }
109
110 function editForm() {
111 return 'CRM_Admin_Form_ParticipantStatus';
112 }
113
114 function editName() {
115 return 'Participant Status';
116 }
117
118 function userContext($mode = NULL) {
119 return 'civicrm/admin/participant_status';
120 }
121 }
122