province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Group / StateMachine.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 */
17class CRM_Group_StateMachine extends CRM_Core_StateMachine {
18
19 /**
2e2605fe
EM
20 * Class constructor.
21 *
22 * @param object $controller
23 * @param \const|int $action
6a488035 24 */
00be9182 25 public function __construct($controller, $action = CRM_Core_Action::NONE) {
6a488035
TO
26 parent::__construct($controller, $action);
27
be2fb01f 28 $this->_pages = [
6a488035
TO
29 'CRM_Group_Form_Edit' => NULL,
30 'CRM_Contact_Form_Search_Basic' => NULL,
31 'CRM_Contact_Form_Task_AddToGroup' => NULL,
32 'CRM_Contact_Form_Task_Result' => NULL,
be2fb01f 33 ];
6a488035
TO
34
35 $this->addSequentialPages($this->_pages, $action);
36 }
37
38 /**
100fef9d 39 * Return the form name of the task. This is
6a488035
TO
40 *
41 * @return string
6a488035 42 */
00be9182 43 public function getTaskFormName() {
6a488035
TO
44 return CRM_Utils_String::getClassName('CRM_Contact_Form_Task_AddToGroup');
45 }
96025800 46
6a488035 47}