Merge pull request #13596 from jackrabbithanna/726-address-api-states
[civicrm-core.git] / CRM / Campaign / Form / Survey / Delete.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
3819f101 35 * This class is to build the form for deleting a Survey.
6a488035
TO
36 */
37class CRM_Campaign_Form_Survey_Delete extends CRM_Core_Form {
38
39 /**
40 * The id of the object being deleted
41 *
42 * @var int
43 */
44 protected $_surveyId;
45
46 /**
100fef9d 47 * SurveyTitle
6a488035
TO
48 *
49 * @var string
50 */
51 protected $_surveyTitle;
52
53
54 /**
fe482240 55 * Set variables up before form is built.
6a488035
TO
56 */
57 public function preProcess() {
58 if (!CRM_Campaign_BAO_Campaign::accessCampaign()) {
59 CRM_Utils_System::permissionDenied();
60 }
61
62 $this->_surveyId = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE);
63 $params = array('id' => $this->_surveyId);
64 CRM_Campaign_BAO_Survey::retrieve($params, $surveyInfo);
65 $this->_surveyTitle = $surveyInfo['title'];
66 $this->assign('surveyTitle', $this->_surveyTitle);
67 CRM_Utils_System::setTitle(ts('Delete Survey') . ' - ' . $this->_surveyTitle);
68 }
69
70 /**
fe482240 71 * Build the form object.
6a488035
TO
72 */
73 public function buildQuickForm() {
74 $this->addButtons(array(
75 array(
76 'type' => 'next',
77 'name' => ts('Delete'),
78 'isDefault' => TRUE,
79 ),
80 array(
81 'type' => 'cancel',
82 'name' => ts('Cancel'),
83 ),
84 )
85 );
86 }
87
88 /**
fe482240 89 * Process the form when submitted.
6a488035
TO
90 */
91 public function postProcess() {
92 if ($this->_surveyId) {
93 CRM_Campaign_BAO_Survey::del($this->_surveyId);
94 CRM_Core_Session::setStatus('', ts("'%1' survey has been deleted.", array(1 => $this->_surveyTitle)), 'success');
95 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/campaign', 'reset=1&subPage=survey'));
0db6c3e1
TO
96 }
97 else {
8ef12e64 98 CRM_Core_Error::fatal(ts('Delete action is missing expected survey ID.'));
6a488035
TO
99 }
100 }
96025800 101
6a488035 102}