Merge pull request #15820 from seamuslee001/dev_core_183_custom_contribsybnt
[civicrm-core.git] / Civi / Api4 / Action / System / Flush.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC. All rights reserved. |
6 | |
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
10 +--------------------------------------------------------------------+
11 */
12
13 /**
14 *
15 * @package CRM
16 * @copyright CiviCRM LLC https://civicrm.org/licensing
17 * $Id$
18 *
19 */
20
21 namespace Civi\Api4\Action\System;
22
23 /**
24 * Clear CiviCRM caches, and optionally rebuild triggers and reset sessions.
25 *
26 * @method bool getTriggers
27 * @method $this setTriggers(bool $triggers)
28 * @method bool getSession
29 * @method $this setSession(bool $session)
30 */
31 class Flush extends \Civi\Api4\Generic\AbstractAction {
32
33 /**
34 * Rebuild db triggers
35 *
36 * @var bool
37 */
38 protected $triggers = FALSE;
39
40 /**
41 * Reset sessions
42 *
43 * @var bool
44 */
45 protected $session = FALSE;
46
47 public function _run(\Civi\Api4\Generic\Result $result) {
48 \CRM_Core_Invoke::rebuildMenuAndCaches($this->triggers, $this->session);
49 }
50
51 }