Merge pull request #14667 from hoegrammer/master
[civicrm-core.git] / CRM / Contribute / Form / Task / Result.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * Used for displaying results
20 */
21 class CRM_Contribute_Form_Task_Result extends CRM_Contribute_Form_Task {
22
23 /**
24 * Build all the data structures needed to build the form.
25 */
26 public function preProcess() {
27 }
28
29 /**
30 * Build the form object.
31 */
32 public function buildQuickForm() {
33 $this->addButtons([
34 [
35 'type' => 'done',
36 'name' => ts('Done'),
37 'isDefault' => TRUE,
38 ],
39 ]);
40 }
41
42 }