Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
7e9e8871 | 4 | | CiviCRM version 4.7 | |
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 | */ |
33 | ||
34 | /** | |
35 | * Page for displaying list of event templates. | |
36 | */ | |
37 | class CRM_Admin_Page_EventTemplate extends CRM_Core_Page_Basic { | |
38 | ||
39 | /** | |
eceb18cc | 40 | * The action links that we need to display for the browse screen. |
6a488035 TO |
41 | * |
42 | * @var array | |
6a488035 TO |
43 | */ |
44 | static $_links = NULL; | |
45 | ||
46 | /** | |
eceb18cc | 47 | * Get BAO Name. |
6a488035 | 48 | * |
a6c01b45 CW |
49 | * @return string |
50 | * Classname of BAO. | |
6a488035 | 51 | */ |
00be9182 | 52 | public function getBAOName() { |
6a488035 TO |
53 | return 'CRM_Event_BAO_Event'; |
54 | } | |
55 | ||
56 | /** | |
eceb18cc | 57 | * Get action Links. |
6a488035 | 58 | * |
a6c01b45 CW |
59 | * @return array |
60 | * (reference) of action links | |
6a488035 | 61 | */ |
00be9182 | 62 | public function &links() { |
6a488035 TO |
63 | if (!(self::$_links)) { |
64 | // helper variable for nicer formatting | |
65 | self::$_links = array( | |
66 | CRM_Core_Action::UPDATE => array( | |
67 | 'name' => ts('Edit'), | |
68 | 'url' => 'civicrm/event/manage/settings', | |
69 | 'qs' => 'action=update&id=%%id%%&reset=1', | |
70 | 'title' => ts('Edit Event Template'), | |
71 | ), | |
72 | CRM_Core_Action::DELETE => array( | |
73 | 'name' => ts('Delete'), | |
74 | 'url' => 'civicrm/event/manage', | |
75 | 'qs' => 'action=delete&id=%%id%%', | |
76 | 'title' => ts('Delete Event Template'), | |
77 | ), | |
78 | ); | |
79 | } | |
80 | ||
81 | return self::$_links; | |
82 | } | |
83 | ||
84 | /** | |
85 | * Browse all event templates. | |
6a488035 | 86 | */ |
00be9182 | 87 | public function browse() { |
6a488035 TO |
88 | //get all event templates. |
89 | $allEventTemplates = array(); | |
90 | ||
91 | $eventTemplate = new CRM_Event_DAO_Event(); | |
92 | ||
353ffa53 TO |
93 | $eventTypes = CRM_Event_PseudoConstant::eventType(); |
94 | $participantRoles = CRM_Event_PseudoConstant::participantRole(); | |
6a488035 TO |
95 | $participantListings = CRM_Event_PseudoConstant::participantListing(); |
96 | ||
97 | //find all event templates. | |
98 | $eventTemplate->is_template = TRUE; | |
99 | $eventTemplate->find(); | |
100 | while ($eventTemplate->fetch()) { | |
101 | CRM_Core_DAO::storeValues($eventTemplate, $allEventTemplates[$eventTemplate->id]); | |
102 | ||
103 | //get listing types. | |
104 | if ($eventTemplate->participant_listing_id) { | |
105 | $allEventTemplates[$eventTemplate->id]['participant_listing'] = $participantListings[$eventTemplate->participant_listing_id]; | |
106 | } | |
107 | ||
108 | //get participant role | |
109 | if ($eventTemplate->default_role_id) { | |
110 | $allEventTemplates[$eventTemplate->id]['participant_role'] = $participantRoles[$eventTemplate->default_role_id]; | |
111 | } | |
112 | ||
113 | //get event type. | |
df322c7a | 114 | if (isset($eventTypes[$eventTemplate->event_type_id])) { |
02fc859b | 115 | $allEventTemplates[$eventTemplate->id]['event_type'] = $eventTypes[$eventTemplate->event_type_id]; |
df322c7a | 116 | } |
6a488035 TO |
117 | |
118 | //form all action links | |
119 | $action = array_sum(array_keys($this->links())); | |
120 | ||
121 | //add action links. | |
122 | $allEventTemplates[$eventTemplate->id]['action'] = CRM_Core_Action::formLink(self::links(), $action, | |
87dab4a4 AH |
123 | array('id' => $eventTemplate->id), |
124 | ts('more'), | |
125 | FALSE, | |
126 | 'eventTemplate.manage.action', | |
127 | 'Event', | |
128 | $eventTemplate->id | |
6a488035 TO |
129 | ); |
130 | } | |
131 | $this->assign('rows', $allEventTemplates); | |
132 | ||
133 | $session = CRM_Core_Session::singleton(); | |
134 | $session->pushUserContext(CRM_Utils_System::url(CRM_Utils_System::currentPath(), | |
353ffa53 TO |
135 | 'reset=1&action=browse' |
136 | )); | |
6a488035 TO |
137 | } |
138 | ||
139 | /** | |
eceb18cc | 140 | * Get name of edit form. |
6a488035 | 141 | * |
a6c01b45 CW |
142 | * @return string |
143 | * Classname of edit form. | |
6a488035 | 144 | */ |
00be9182 | 145 | public function editForm() { |
6a488035 TO |
146 | return 'CRM_Admin_Form_EventTemplate'; |
147 | } | |
148 | ||
149 | /** | |
eceb18cc | 150 | * Get edit form name. |
6a488035 | 151 | * |
a6c01b45 CW |
152 | * @return string |
153 | * name of this page. | |
6a488035 | 154 | */ |
00be9182 | 155 | public function editName() { |
6a488035 TO |
156 | return 'Event Templates'; |
157 | } | |
158 | ||
159 | /** | |
160 | * Get user context. | |
161 | * | |
da6b46f4 EM |
162 | * @param null $mode |
163 | * | |
a6c01b45 CW |
164 | * @return string |
165 | * user context. | |
6a488035 | 166 | */ |
00be9182 | 167 | public function userContext($mode = NULL) { |
6a488035 TO |
168 | return 'civicrm/admin/eventTemplate'; |
169 | } | |
96025800 | 170 | |
6a488035 | 171 | } |