INFRA-132 comments to end with full stops
[civicrm-core.git] / CRM / Activity / 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 * This class provides the functionality to sms a group of
30 * contacts.
31 */
32 class CRM_Activity_Form_Task_SMS extends CRM_Activity_Form_Task {
33
34 /**
35 * Are we operating in "single mode", i.e. sending sms to one
36 * specific contact?
37 *
38 * @var boolean
39 */
40 public $_single = FALSE;
41
42 /**
43 * All the existing templates in the system.
44 *
45 * @var array
46 */
47 public $_templates = NULL;
48
49 /**
50 * Build all the data structures needed to build the form.
51 *
52 * @return void
53 */
54 public function preProcess() {
55 parent::preProcess();
56 CRM_Contact_Form_Task_SMSCommon::preProcessProvider($this);
57 $this->assign('single', $this->_single);
58 }
59
60 /**
61 * Build the form object.
62 *
63 *
64 * @return void
65 */
66 public function buildQuickForm() {
67 //enable form element
68 $this->assign('SMSTask', TRUE);
69 CRM_Contact_Form_Task_SMSCommon::buildQuickForm($this);
70 }
71
72 /**
73 * Process the form after the input has been submitted and validated.
74 *
75 *
76 * @return void
77 */
78 public function postProcess() {
79 CRM_Contact_Form_Task_SMSCommon::postProcess($this);
80 }
81
82 }