INFRA-132 - Fix spacing of @return tag in comments
[civicrm-core.git] / Civi / API / Events.php
CommitLineData
132ec342
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
132ec342 5 +--------------------------------------------------------------------+
39de6fd5 6 | Copyright CiviCRM LLC (c) 2004-2014 |
132ec342
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27namespace Civi\API;
28
29/**
30 * The API kernel dispatches a series of events while processing each API request.
787604ff 31 * For a successful API request, the sequence is RESOLVE => AUTHORIZE => PREPARE => RESPOND.
132ec342
TO
32 * If an exception arises in any stage, then the sequence is aborted and the EXCEPTION
33 * event is dispatched.
34 *
35 * Event subscribers which are concerned about the order of execution should assign
36 * a weight to their subscription (such as W_EARLY, W_MIDDLE, or W_LATE).
8882ff5c 37 * W_LATE).
132ec342
TO
38 */
39class Events {
40
41 /**
42 * Determine whether the API request is allowed for the current user.
8882ff5c
TO
43 * For successful execution, at least one listener must invoke
44 * $event->authorize().
132ec342
TO
45 *
46 * @see AuthorizeEvent
47 */
48 const AUTHORIZE = 'api.authorize';
49
787604ff
TO
50 /**
51 * Determine which API provider executes the given request. For successful
8882ff5c
TO
52 * execution, at least one listener must invoke
53 * $event->setProvider($provider).
787604ff
TO
54 *
55 * @see ResolveEvent
56 */
57 const RESOLVE = 'api.resolve';
58
132ec342
TO
59 /**
60 * Apply pre-execution logic
61 *
62 * @see PrepareEvent
63 */
64 const PREPARE = 'api.prepare';
65
66 /**
67 * Apply post-execution logic
68 *
69 * @see RespondEvent
70 */
71 const RESPOND = 'api.respond';
72
73 /**
74 * Handle any exceptions
75 *
76 * @see ExceptionEvent
77 */
78 const EXCEPTION = 'api.exception';
79
80 /**
81 * Weight - Early
82 */
83 const W_EARLY = 100;
84
85 /**
86 * Weight - Middle
87 */
88 const W_MIDDLE = 0;
89
90 /**
91 * Weight - Late
92 */
93 const W_LATE = -100;
70265090
TO
94
95 /**
96 * @return array<string>
97 */
98 public static function allEvents() {
99 return array(
100 self::AUTHORIZE,
101 self::EXCEPTION,
102 self::PREPARE,
103 self::RESOLVE,
104 self::RESPOND,
105 );
106 }
132ec342 107}