Merge pull request #15778 from agh1/reminder-do-not-email-test
[civicrm-core.git] / Civi / API / Event / AuthorizeEvent.php
CommitLineData
132ec342
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
41498ac5 4 | Copyright CiviCRM LLC. All rights reserved. |
132ec342 5 | |
41498ac5
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 |
132ec342 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
132ec342
TO
11
12namespace Civi\API\Event;
13
6550386a
EM
14/**
15 * Class AuthorizeEvent
16 * @package Civi\API\Event
17 */
132ec342
TO
18class AuthorizeEvent extends Event {
19 /**
20 * @var bool
21 */
22 private $authorized = FALSE;
23
8882ff5c
TO
24 /**
25 * Mark the request as authorized.
26 */
132ec342
TO
27 public function authorize() {
28 $this->authorized = TRUE;
29 }
30
31 /**
8882ff5c
TO
32 * @return bool
33 * TRUE if the request has been authorized.
132ec342
TO
34 */
35 public function isAuthorized() {
36 return $this->authorized;
37 }
96025800 38
132ec342 39}