Merge pull request #15921 from civicrm/5.20
[civicrm-core.git] / CRM / Group / StateMachine.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 * $Id$
17 *
18 */
19 class CRM_Group_StateMachine extends CRM_Core_StateMachine {
20
21 /**
22 * Class constructor.
23 *
24 * @param object $controller
25 * @param \const|int $action
26 */
27 public function __construct($controller, $action = CRM_Core_Action::NONE) {
28 parent::__construct($controller, $action);
29
30 $this->_pages = [
31 'CRM_Group_Form_Edit' => NULL,
32 'CRM_Contact_Form_Search_Basic' => NULL,
33 'CRM_Contact_Form_Task_AddToGroup' => NULL,
34 'CRM_Contact_Form_Task_Result' => NULL,
35 ];
36
37 $this->addSequentialPages($this->_pages, $action);
38 }
39
40 /**
41 * Return the form name of the task. This is
42 *
43 * @return string
44 */
45 public function getTaskFormName() {
46 return CRM_Utils_String::getClassName('CRM_Contact_Form_Task_AddToGroup');
47 }
48
49 }