Merge pull request #4981 from totten/master-cbf2
[civicrm-core.git] / CRM / Contact / Form / Task / SMS.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class provides the functionality to sms a group of
38 * contacts.
39 */
40 class CRM_Contact_Form_Task_SMS extends CRM_Contact_Form_Task {
41
42 /**
43 * Are we operating in "single mode", i.e. sending sms to one
44 * specific contact?
45 *
46 * @var boolean
47 */
48 public $_single = FALSE;
49
50 /**
51 * All the existing templates in the system
52 *
53 * @var array
54 */
55 public $_templates = NULL;
56
57 public function preProcess() {
58
59 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
60
61 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this, FALSE);
62
63 CRM_Contact_Form_Task_SMSCommon::preProcessProvider($this);
64
65 if (!$cid && $this->_context != 'standalone') {
66 parent::preProcess();
67 }
68
69 $this->assign('single', $this->_single);
70 if (CRM_Core_Permission::check('administer CiviCRM')) {
71 $this->assign('isAdmin', 1);
72 }
73 }
74
75 /**
76 * Build the form object
77 *
78 *
79 * @return void
80 */
81 public function buildQuickForm() {
82 //enable form element
83 $this->assign('suppressForm', FALSE);
84 $this->assign('SMSTask', TRUE);
85 CRM_Contact_Form_Task_SMSCommon::buildQuickForm($this);
86 }
87
88 /**
89 * Process the form after the input has been submitted and validated
90 *
91 *
92 * @return void
93 */
94 public function postProcess() {
95 CRM_Contact_Form_Task_SMSCommon::postProcess($this);
96 }
97
98 }