commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Campaign / Form / Survey / Delete.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * This class is to build the form for deleting a Survey
38 */
39 class CRM_Campaign_Form_Survey_Delete extends CRM_Core_Form {
40
41 /**
42 * The id of the object being deleted
43 *
44 * @var int
45 */
46 protected $_surveyId;
47
48 /**
49 * SurveyTitle
50 *
51 * @var string
52 */
53 protected $_surveyTitle;
54
55
56 /**
57 * Set variables up before form is built.
58 *
59 * @return void
60 */
61 public function preProcess() {
62 if (!CRM_Campaign_BAO_Campaign::accessCampaign()) {
63 CRM_Utils_System::permissionDenied();
64 }
65
66 $this->_surveyId = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE);
67 $params = array('id' => $this->_surveyId);
68 CRM_Campaign_BAO_Survey::retrieve($params, $surveyInfo);
69 $this->_surveyTitle = $surveyInfo['title'];
70 $this->assign('surveyTitle', $this->_surveyTitle);
71 CRM_Utils_System::setTitle(ts('Delete Survey') . ' - ' . $this->_surveyTitle);
72 }
73
74 /**
75 * Build the form object.
76 *
77 * @return void
78 */
79 public function buildQuickForm() {
80 $this->addButtons(array(
81 array(
82 'type' => 'next',
83 'name' => ts('Delete'),
84 'isDefault' => TRUE,
85 ),
86 array(
87 'type' => 'cancel',
88 'name' => ts('Cancel'),
89 ),
90 )
91 );
92 }
93
94 /**
95 * Process the form when submitted.
96 *
97 * @return void
98 */
99 public function postProcess() {
100 if ($this->_surveyId) {
101 CRM_Campaign_BAO_Survey::del($this->_surveyId);
102 CRM_Core_Session::setStatus('', ts("'%1' survey has been deleted.", array(1 => $this->_surveyTitle)), 'success');
103 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/campaign', 'reset=1&subPage=survey'));
104 }
105 else {
106 CRM_Core_Error::fatal(ts('Delete action is missing expected survey ID.'));
107 }
108 }
109
110 }