Merge pull request #5076 from colemanw/Attachment
[civicrm-core.git] / CRM / Contact / Form / Task / SMS.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class provides the functionality to sms a group of
38 * contacts.
39 */
40class 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 /**
100fef9d 51 * All the existing templates in the system
6a488035
TO
52 *
53 * @var array
54 */
430ae6dd
TO
55 public $_templates = NULL;
56
00be9182 57 public function preProcess() {
6a488035
TO
58
59 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
60
61 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this, FALSE);
6a488035
TO
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 /**
c490a46a 76 * Build the form object
6a488035 77 *
6a488035
TO
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 /**
100fef9d 89 * Process the form after the input has been submitted and validated
6a488035 90 *
6a488035 91 *
355ba699 92 * @return void
6a488035
TO
93 */
94 public function postProcess() {
95 CRM_Contact_Form_Task_SMSCommon::postProcess($this);
96 }
96025800 97
6a488035 98}