Commit | Line | Data |
---|---|---|
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 | /** | |
df371444 | 35 | * This class provides the functionality to delete a group of case records. |
6a488035 TO |
36 | */ |
37 | class CRM_Case_Form_Task_Delete extends CRM_Case_Form_Task { | |
38 | ||
39 | /** | |
40 | * Are we operating in "single mode", i.e. deleting one | |
41 | * specific case? | |
42 | * | |
43 | * @var boolean | |
44 | */ | |
45 | protected $_single = FALSE; | |
46 | ||
47 | /** | |
fe482240 | 48 | * Are we moving case to Trash. |
6a488035 TO |
49 | * |
50 | * @var boolean | |
51 | */ | |
52 | public $_moveToTrash = TRUE; | |
53 | ||
54 | /** | |
cde2037d | 55 | * Build all the data structures needed to build the form. |
95ea96be | 56 | */ |
3bdca100 | 57 | public function preProcess() { |
6a488035 | 58 | if (!CRM_Core_Permission::checkActionPermission('CiviCase', CRM_Core_Action::DELETE)) { |
0499b0ad | 59 | CRM_Core_Error::fatal(ts('You do not have permission to access this page.')); |
6a488035 TO |
60 | } |
61 | parent::preProcess(); | |
62 | } | |
63 | ||
64 | /** | |
fe482240 | 65 | * Build the form object. |
6a488035 | 66 | */ |
00be9182 | 67 | public function buildQuickForm() { |
174a1918 | 68 | $this->addDefaultButtons(ts('Delete cases'), 'done'); |
6a488035 TO |
69 | } |
70 | ||
71 | /** | |
cde2037d | 72 | * Process the form after the input has been submitted and validated. |
6a488035 TO |
73 | */ |
74 | public function postProcess() { | |
99483ce8 | 75 | $deleted = $failed = 0; |
6e3090fb | 76 | foreach ($this->_entityIds as $caseId) { |
6a488035 | 77 | if (CRM_Case_BAO_Case::deleteCase($caseId, $this->_moveToTrash)) { |
99483ce8 | 78 | $deleted++; |
6a488035 | 79 | } |
99483ce8 CW |
80 | else { |
81 | $failed++; | |
82 | } | |
83 | } | |
84 | ||
85 | if ($deleted) { | |
86 | if ($this->_moveToTrash) { | |
87 | $msg = ts('%count case moved to trash.', array('plural' => '%count cases moved to trash.', 'count' => $deleted)); | |
88 | } | |
89 | else { | |
90 | $msg = ts('%count case permanently deleted.', array('plural' => '%count cases permanently deleted.', 'count' => $deleted)); | |
91 | } | |
92 | CRM_Core_Session::setStatus($msg, ts('Removed'), 'success'); | |
6a488035 TO |
93 | } |
94 | ||
99483ce8 CW |
95 | if ($failed) { |
96 | CRM_Core_Session::setStatus(ts('1 could not be deleted.', array('plural' => '%count could not be deleted.', 'count' => $failed)), ts('Error'), 'error'); | |
97 | } | |
6a488035 | 98 | } |
96025800 | 99 | |
6a488035 | 100 | } |