Merge pull request #1834 from monishdeb/CRM-13614
[civicrm-core.git] / CRM / Admin / Page / ParticipantStatus.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
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 */
35class CRM_Admin_Page_ParticipantStatus extends CRM_Core_Page_Basic {
36 function getBAOName() {
37 return 'CRM_Event_BAO_ParticipantStatusType';
38 }
39
40 function &links() {
41 static $links = NULL;
42 if ($links === NULL) {
43 $links = array(
44 CRM_Core_Action::UPDATE => array(
45 'name' => ts('Edit'),
46 'url' => 'civicrm/admin/participant_status',
47 'qs' => 'action=update&id=%%id%%&reset=1',
48 'title' => ts('Edit Status'),
49 ),
50 CRM_Core_Action::DELETE => array(
51 'name' => ts('Delete'),
52 'url' => 'civicrm/admin/participant_status',
53 'qs' => 'action=delete&id=%%id%%',
54 'title' => ts('Delete Status'),
55 ),
56 CRM_Core_Action::DISABLE => array(
57 'name' => ts('Disable'),
58 'extra' => 'onclick = "enableDisable( %%id%%,\'' . 'CRM_Event_BAO_ParticipantStatusType' . '\',\'' . 'enable-disable' . '\' );"',
59 'ref' => 'disable-action',
60 'title' => ts('Disable Status'),
61 ),
62 CRM_Core_Action::ENABLE => array(
63 'name' => ts('Enable'),
64 'extra' => 'onclick = "enableDisable( %%id%%,\'' . 'CRM_Event_BAO_ParticipantStatusType' . '\',\'' . 'disable-enable' . '\' );"',
65 'ref' => 'enable-action',
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(self::links(), $action, array('id' => $dao->id));
96 $statusTypes[$dao->id]['visibility'] = $visibilities[$dao->visibility_id];
97 }
98 $this->assign('rows', $statusTypes);
99 }
100
101 function editForm() {
102 return 'CRM_Admin_Form_ParticipantStatus';
103 }
104
105 function editName() {
106 return 'Participant Status';
107 }
108
109 function userContext($mode = NULL) {
110 return 'civicrm/admin/participant_status';
111 }
112}
113