CRM-14015 - Extend to option value page
[civicrm-core.git] / CRM / SMS / Page / Provider.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 */
35
36/**
37 * Page for displaying list of Providers
38 */
39class CRM_SMS_Page_Provider extends CRM_Core_Page_Basic {
40
41 /**
42 * The action links that we need to display for the browse screen
43 *
44 * @var array
45 * @static
46 */
47 static $_links = NULL;
48
49 /**
50 * Get BAO Name
51 *
52 * @return string Classname of BAO.
53 */
54 function getBAOName() {
55 return 'CRM_SMS_BAO_Provider';
56 }
57
58 /**
59 * Get action Links
60 *
61 * @return array (reference) of action links
62 */
63 function &links() {
64 if (!(self::$_links)) {
65 self::$_links = array(
66 CRM_Core_Action::UPDATE => array(
67 'name' => ts('Edit'),
68 'url' => 'civicrm/admin/sms/provider',
69 'qs' => 'action=update&id=%%id%%&reset=1',
70 'title' => ts('Edit Provider'),
71 ),
72 CRM_Core_Action::DELETE => array(
73 'name' => ts('Delete'),
74 'url' => 'civicrm/admin/sms/provider',
75 'qs' => 'action=delete&id=%%id%%',
76 'title' => ts('Delete Provider'),
77 ),
78 CRM_Core_Action::ENABLE => array(
79 'name' => ts('Enable'),
80 'extra' => 'onclick = "enableDisable( %%id%%,\'' . 'CRM_SMS_BAO_Provider' . '\',\'' . 'disable-enable' . '\' );"',
81 'ref' => 'enable-action',
82 'title' => ts('Enable Provider'),
83 ),
84 CRM_Core_Action::DISABLE => array(
85 'name' => ts('Disable'),
86 'extra' => 'onclick = "enableDisable( %%id%%,\'' . 'CRM_SMS_BAO_Provider' . '\',\'' . 'enable-disable' . '\' );"',
87 'ref' => 'disable-action',
88 'title' => ts('Disable Provider'),
89 ),
90 );
91 }
92 return self::$_links;
93 }
94
95 /**
96 * Run the page.
97 *
98 * This method is called after the page is created. It checks for the
99 * type of action and executes that action.
100 * Finally it calls the parent's run method.
101 *
102 * @return void
103 * @access public
104 *
105 */
106 function run() {
107 // set title and breadcrumb
108 CRM_Utils_System::setTitle(ts('Settings - SMS Provider'));
109 $breadCrumb = array(array('title' => ts('SMS Provider'),
110 'url' => CRM_Utils_System::url('civicrm/admin/sms/provider',
111 'reset=1'
112 ),
113 ));
114 CRM_Utils_System::appendBreadCrumb($breadCrumb);
115
116 $this->_id = CRM_Utils_Request::retrieve('id', 'String',
117 $this, FALSE, 0
118 );
119 $this->_action = CRM_Utils_Request::retrieve('action', 'String',
120 $this, FALSE, 0
121 );
122
123 return parent::run();
124 }
125
126 /**
127 * Browse all Providers.
128 *
129 * @return void
130 * @access public
131 * @static
132 */
133 function browse($action = NULL) {
134 $providers = CRM_SMS_BAO_Provider::getProviders();
135 $rows = array();
136 foreach ($providers as $provider) {
137 $action = array_sum(array_keys($this->links()));
138 // update enable/disable links.
139 if ($provider['is_active']) {
140 $action -= CRM_Core_Action::ENABLE;
141 }
142 else {
143 $action -= CRM_Core_Action::DISABLE;
144 }
145
146 $apiTypes = CRM_Core_OptionGroup::values('sms_api_type', FALSE, FALSE, FALSE, NULL, 'label');
147 $provider['api_type'] = $apiTypes[$provider['api_type']];
148
149 $provider['action'] = CRM_Core_Action::formLink(self::links(), $action,
87dab4a4
AH
150 array('id' => $provider['id']),
151 ts('more'),
152 FALSE,
153 'sms.provider.row',
154 'SMSProvider',
155 $provider['id']
6a488035
TO
156 );
157 $rows[] = $provider;
158 }
159 $this->assign('rows', $rows);
160 }
161
162 /**
163 * Get name of edit form
164 *
165 * @return string Classname of edit form.
166 */
167 function editForm() {
168 return 'CRM_SMS_Form_Provider';
169 }
170
171 /**
172 * Get edit form name
173 *
174 * @return string name of this page.
175 */
176 function editName() {
177 return 'SMS Provider';
178 }
179
180 /**
181 * Get user context.
182 *
183 * @return string user context.
184 */
185 function userContext($mode = NULL) {
186 return 'civicrm/admin/sms/provider';
187 }
188}
189