Merge pull request #16146 from eileenmcnaughton/index_api2
[civicrm-core.git] / CRM / Pledge / Controller / Search.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 */
17
18 /**
19 * This class is used by the Search functionality.
20 *
21 * - the search controller is used for building/processing multiform
22 * searches.
23 *
24 * Typically the first form will display the search criteria and its results.
25 *
26 * The second form is used to process search results with the associated actions.
27 */
28 class CRM_Pledge_Controller_Search extends CRM_Core_Controller {
29
30 /**
31 * Class constructor.
32 *
33 * @param string $title
34 * @param bool|int $action
35 * @param bool $modal
36 */
37 public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
38
39 parent::__construct($title, $modal);
40
41 $this->_stateMachine = new CRM_Pledge_StateMachine_Search($this, $action);
42
43 // create and instantiate the pages
44 $this->addPages($this->_stateMachine, $action);
45
46 // add all the actions
47 $config = CRM_Core_Config::singleton();
48 $this->addActions();
49 }
50
51 }