Merge pull request #15843 from totten/master-simplehead
[civicrm-core.git] / CRM / Contact / Page / Task.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 * This is a dummy class that does nothing at the moment.
95cdcc0f 20 *
21 * The template is used primarily for displaying result page
6a488035
TO
22 * of tasks performed on contacts. Contacts are searched/selected
23 * and then subjected to Tasks/Actions.
6a488035
TO
24 */
25class CRM_Contact_Page_Task extends CRM_Core_Page {
26
27 /**
fe482240 28 * Returns the page title.
6a488035 29 *
a6c01b45
CW
30 * @return string
31 * the title of the page
6a488035 32 */
00be9182 33 public function getTitle() {
6a488035
TO
34 return "Task Results";
35 }
96025800 36
6a488035 37}