Merge pull request #17187 from alexymik/recur_contribution_source
[civicrm-core.git] / CRM / PCP / Controller / PCP.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 * $Id$
17 *
18 */
19
20/**
21 * This class is used by the Search functionality.
22 *
23 * - the search controller is used for building/processing multiform
24 * searches.
25 *
301705fb 26 * Typically the first form will display the search criteria and its results
6a488035 27 *
ac3ab0e4 28 * The second form is used to process search results with the associated actions
6a488035
TO
29 *
30 */
31class CRM_PCP_Controller_PCP extends CRM_Core_Controller {
32
33 /**
2e2605fe
EM
34 * Class constructor.
35 *
36 * @param string $title
37 * @param bool|int $action
38 * @param bool $modal
6a488035 39 */
00be9182 40 public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
6a488035
TO
41
42 parent::__construct($title, $modal);
43
6a488035
TO
44 $this->_stateMachine = new CRM_PCP_StateMachine_PCP($this, $action);
45
46 // create and instantiate the pages
47 $this->addPages($this->_stateMachine, $action);
48
49 // add all the actions
50 $uploadNames = $this->get('uploadNames');
51 if (!empty($uploadNames)) {
52 $config = CRM_Core_Config::singleton();
53 $this->addActions($config->customFileUploadDir, $uploadNames);
54 }
55 else {
56 $this->addActions();
57 }
58 }
96025800 59
6a488035 60}