Merge pull request #18559 from agileware/CIVICRM-1567
[civicrm-core.git] / CRM / Campaign / 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/**
3819f101 19 * Used for displaying results.
6a488035
TO
20 */
21class CRM_Campaign_Form_Task_Result extends CRM_Campaign_Form_Task {
22
23 /**
fe482240 24 * Build all the data structures needed to build the form.
6a488035 25 */
94880218
TO
26 public function preProcess() {
27 }
6a488035
TO
28
29 /**
fe482240 30 * Build the form object.
6a488035
TO
31 */
32 public function buildQuickForm() {
be2fb01f 33 $this->addButtons([
5d4fcf54
TO
34 [
35 'type' => 'done',
36 'name' => ts('Done'),
37 'isDefault' => TRUE,
38 ],
39 ]);
6a488035 40 }
96025800 41
6a488035 42}