Merge pull request #23080 from eileenmcnaughton/isset
[civicrm-core.git] / CRM / Member / Form / Task / Result.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
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 |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * Used for displaying results
20 *
21 *
22 */
23class CRM_Member_Form_Task_Result extends CRM_Member_Form_Task {
24
25 /**
fe482240 26 * Build all the data structures needed to build the form.
6a488035
TO
27 *
28 * @return void
6a488035 29 */
b09fe5ed
TO
30 public function preProcess() {
31 }
6a488035
TO
32
33 /**
fe482240 34 * Build the form object.
6a488035 35 *
355ba699 36 * @return void
6a488035
TO
37 */
38 public function buildQuickForm() {
be2fb01f
CW
39 $this->addButtons([
40 [
c5c263ca
AH
41 'type' => 'done',
42 'name' => ts('Done'),
43 'isDefault' => TRUE,
be2fb01f
CW
44 ],
45 ]);
6a488035 46 }
96025800 47
6a488035 48}