Import from SVN (r45945, r596)
[civicrm-core.git] / CRM / Contact / Form / Task / SMS.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 * 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; function preProcess() {
56
57 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
58
59 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this, FALSE);
60 if ($cid) {
61 CRM_Contact_Page_View::setTitle($cid);
62 }
63
64 CRM_Contact_Form_Task_SMSCommon::preProcessProvider($this);
65
66 if (!$cid && $this->_context != 'standalone') {
67 parent::preProcess();
68 }
69
70 $this->assign('single', $this->_single);
71 if (CRM_Core_Permission::check('administer CiviCRM')) {
72 $this->assign('isAdmin', 1);
73 }
74 }
75
76 /**
77 * Build the form
78 *
79 * @access public
80 *
81 * @return void
82 */
83 public function buildQuickForm() {
84 //enable form element
85 $this->assign('suppressForm', FALSE);
86 $this->assign('SMSTask', TRUE);
87 CRM_Contact_Form_Task_SMSCommon::buildQuickForm($this);
88 }
89
90 /**
91 * process the form after the input has been submitted and validated
92 *
93 * @access public
94 *
95 * @return None
96 */
97 public function postProcess() {
98 CRM_Contact_Form_Task_SMSCommon::postProcess($this);
99 }
100 }
101