@@ -17,43 +17,43 @@ discard block |
||
17 | 17 | /** |
18 | 18 | * @since 1.0.0 |
19 | 19 | */ |
20 | - public function do_event( $event_slug, WordPoints_Hook_Event_Args $event_args ) { |
|
20 | + public function do_event($event_slug, WordPoints_Hook_Event_Args $event_args) { |
|
21 | 21 | |
22 | 22 | $hooks = wordpoints_hooks(); |
23 | 23 | |
24 | - foreach ( $this->get_hits( $event_slug, $event_args ) as $hit ) { |
|
24 | + foreach ($this->get_hits($event_slug, $event_args) as $hit) { |
|
25 | 25 | |
26 | 26 | /** @var WordPoints_Hook_Reactor $reactor */ |
27 | - $reactor = $hooks->reactors->get( $hit->reactor ); |
|
27 | + $reactor = $hooks->reactors->get($hit->reactor); |
|
28 | 28 | |
29 | - if ( ! $reactor instanceof WordPoints_Hook_Reactor_ReverseI ) { |
|
29 | + if ( ! $reactor instanceof WordPoints_Hook_Reactor_ReverseI) { |
|
30 | 30 | continue; |
31 | 31 | } |
32 | 32 | |
33 | - $reactions = $reactor->get_reaction_store( $hit->reaction_store ); |
|
33 | + $reactions = $reactor->get_reaction_store($hit->reaction_store); |
|
34 | 34 | |
35 | 35 | if ( |
36 | 36 | ! $reactions |
37 | - || wp_json_encode( $reactions->get_context_id() ) !== $hit->reaction_context_id |
|
37 | + || wp_json_encode($reactions->get_context_id()) !== $hit->reaction_context_id |
|
38 | 38 | ) { |
39 | 39 | continue; |
40 | 40 | } |
41 | 41 | |
42 | - $reaction = $reactions->get_reaction( $hit->reaction_id ); |
|
42 | + $reaction = $reactions->get_reaction($hit->reaction_id); |
|
43 | 43 | |
44 | - if ( ! $reaction ) { |
|
44 | + if ( ! $reaction) { |
|
45 | 45 | continue; |
46 | 46 | } |
47 | 47 | |
48 | - $fire = new WordPoints_Hook_Fire( $this, $event_args, $reaction, $hit ); |
|
48 | + $fire = new WordPoints_Hook_Fire($this, $event_args, $reaction, $hit); |
|
49 | 49 | |
50 | 50 | $fire->hit(); |
51 | 51 | |
52 | - $reactor->reverse_hit( $fire ); |
|
52 | + $reactor->reverse_hit($fire); |
|
53 | 53 | |
54 | 54 | /** @var WordPoints_Hook_Extension $extension */ |
55 | - foreach ( $hooks->extensions->get_all() as $extension ) { |
|
56 | - $extension->after_reverse( $fire ); |
|
55 | + foreach ($hooks->extensions->get_all() as $extension) { |
|
56 | + $extension->after_reverse($fire); |
|
57 | 57 | } |
58 | 58 | } |
59 | 59 | } |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * |
69 | 69 | * @return object[] The data for each hit from the hit logs database table. |
70 | 70 | */ |
71 | - protected function get_hits( $event_slug, WordPoints_Hook_Event_Args $event_args ) { |
|
71 | + protected function get_hits($event_slug, WordPoints_Hook_Event_Args $event_args) { |
|
72 | 72 | |
73 | 73 | global $wpdb; |
74 | 74 | |
@@ -82,12 +82,12 @@ discard block |
||
82 | 82 | AND `event` = %s |
83 | 83 | AND `superseded_by` IS NULL |
84 | 84 | " |
85 | - , wordpoints_hooks_get_event_primary_arg_guid_json( $event_args ) |
|
85 | + , wordpoints_hooks_get_event_primary_arg_guid_json($event_args) |
|
86 | 86 | , $event_slug |
87 | 87 | ) |
88 | 88 | ); |
89 | 89 | |
90 | - if ( ! is_array( $hits ) ) { |
|
90 | + if ( ! is_array($hits)) { |
|
91 | 91 | return array(); |
92 | 92 | } |
93 | 93 |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * @since 1.0.0 |
55 | 55 | */ |
56 | - public function __get( $var ) { |
|
56 | + public function __get($var) { |
|
57 | 57 | |
58 | - if ( 'reactions' !== $var ) { |
|
58 | + if ('reactions' !== $var) { |
|
59 | 59 | return null; |
60 | 60 | } |
61 | 61 | |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | wordpoints_hooks()->get_current_mode() |
64 | 64 | ); |
65 | 65 | |
66 | - if ( ! $reaction_store ) { |
|
66 | + if ( ! $reaction_store) { |
|
67 | 67 | return null; |
68 | 68 | } |
69 | 69 | |
@@ -79,20 +79,20 @@ discard block |
||
79 | 79 | * |
80 | 80 | * @return WordPoints_Hook_Reaction_StoreI|false The reaction storage object. |
81 | 81 | */ |
82 | - public function get_reaction_store( $slug ) { |
|
82 | + public function get_reaction_store($slug) { |
|
83 | 83 | |
84 | 84 | $reaction_store = wordpoints_hooks()->reaction_stores->get( |
85 | 85 | $this->slug |
86 | 86 | , $slug |
87 | - , array( $this ) |
|
87 | + , array($this) |
|
88 | 88 | ); |
89 | 89 | |
90 | - if ( ! $reaction_store instanceof WordPoints_Hook_Reaction_StoreI ) { |
|
90 | + if ( ! $reaction_store instanceof WordPoints_Hook_Reaction_StoreI) { |
|
91 | 91 | return false; |
92 | 92 | } |
93 | 93 | |
94 | 94 | // Allowing access to stores out-of-context would lead to strange behavior. |
95 | - if ( false === $reaction_store->get_context_id() ) { |
|
95 | + if (false === $reaction_store->get_context_id()) { |
|
96 | 96 | return false; |
97 | 97 | } |
98 | 98 | |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | * |
183 | 183 | * @return WordPoints_Hook_ReactionI[] All of the reaction objects. |
184 | 184 | */ |
185 | - public function get_all_reactions_to_event( $event_slug ) { |
|
185 | + public function get_all_reactions_to_event($event_slug) { |
|
186 | 186 | |
187 | 187 | $reactions = array(); |
188 | 188 | |
@@ -190,17 +190,17 @@ discard block |
||
190 | 190 | $this->slug |
191 | 191 | ); |
192 | 192 | |
193 | - foreach ( $slugs as $slug ) { |
|
193 | + foreach ($slugs as $slug) { |
|
194 | 194 | |
195 | - $store = $this->get_reaction_store( $slug ); |
|
195 | + $store = $this->get_reaction_store($slug); |
|
196 | 196 | |
197 | - if ( ! $store ) { |
|
197 | + if ( ! $store) { |
|
198 | 198 | continue; |
199 | 199 | } |
200 | 200 | |
201 | 201 | $reactions = array_merge( |
202 | 202 | $reactions |
203 | - , $store->get_reactions_to_event( $event_slug ) |
|
203 | + , $store->get_reactions_to_event($event_slug) |
|
204 | 204 | ); |
205 | 205 | } |
206 | 206 | |
@@ -229,15 +229,15 @@ discard block |
||
229 | 229 | $this->slug |
230 | 230 | ); |
231 | 231 | |
232 | - foreach ( $slugs as $slug ) { |
|
232 | + foreach ($slugs as $slug) { |
|
233 | 233 | |
234 | - $store = $this->get_reaction_store( $slug ); |
|
234 | + $store = $this->get_reaction_store($slug); |
|
235 | 235 | |
236 | - if ( ! $store ) { |
|
236 | + if ( ! $store) { |
|
237 | 237 | continue; |
238 | 238 | } |
239 | 239 | |
240 | - $reactions = array_merge( $reactions, $store->get_reactions() ); |
|
240 | + $reactions = array_merge($reactions, $store->get_reactions()); |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | return $reactions; |
@@ -253,21 +253,21 @@ discard block |
||
253 | 253 | ) { |
254 | 254 | |
255 | 255 | if ( |
256 | - empty( $settings['target'] ) |
|
257 | - || ! is_array( $settings['target'] ) |
|
256 | + empty($settings['target']) |
|
257 | + || ! is_array($settings['target']) |
|
258 | 258 | ) { |
259 | 259 | |
260 | - $validator->add_error( __( 'Invalid target.', 'wordpoints' ), 'target' ); |
|
260 | + $validator->add_error(__('Invalid target.', 'wordpoints'), 'target'); |
|
261 | 261 | |
262 | 262 | } else { |
263 | 263 | |
264 | - $target = $event_args->get_from_hierarchy( $settings['target'] ); |
|
264 | + $target = $event_args->get_from_hierarchy($settings['target']); |
|
265 | 265 | |
266 | 266 | if ( |
267 | 267 | ! $target instanceof WordPoints_Entity |
268 | - || ! in_array( $target->get_slug(), (array) $this->arg_types ) |
|
268 | + || ! in_array($target->get_slug(), (array) $this->arg_types) |
|
269 | 269 | ) { |
270 | - $validator->add_error( __( 'Invalid target.', 'wordpoints' ), 'target' ); |
|
270 | + $validator->add_error(__('Invalid target.', 'wordpoints'), 'target'); |
|
271 | 271 | } |
272 | 272 | } |
273 | 273 | |
@@ -277,8 +277,8 @@ discard block |
||
277 | 277 | /** |
278 | 278 | * @since 1.0.0 |
279 | 279 | */ |
280 | - public function update_settings( WordPoints_Hook_ReactionI $reaction, array $settings ) { |
|
281 | - $reaction->update_meta( 'target', $settings['target'] ); |
|
280 | + public function update_settings(WordPoints_Hook_ReactionI $reaction, array $settings) { |
|
281 | + $reaction->update_meta('target', $settings['target']); |
|
282 | 282 | } |
283 | 283 | |
284 | 284 | /** |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | * |
289 | 289 | * @param WordPoints_Hook_Fire $fire The hook fire object. |
290 | 290 | */ |
291 | - abstract public function hit( WordPoints_Hook_Fire $fire ); |
|
291 | + abstract public function hit(WordPoints_Hook_Fire $fire); |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | // EOF |
@@ -21,7 +21,7 @@ |
||
21 | 21 | * |
22 | 22 | * @param WordPoints_Hook_Fire $fire The reverse fire object. |
23 | 23 | */ |
24 | - public function reverse_hit( WordPoints_Hook_Fire $fire ); |
|
24 | + public function reverse_hit(WordPoints_Hook_Fire $fire); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | // EOF |
@@ -10,109 +10,109 @@ |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // auto-generated { |
13 | -require_once( dirname( __FILE__ ) . 'app.php' ); |
|
14 | -require_once( dirname( __FILE__ ) . 'app/registry.php' ); |
|
15 | -require_once( dirname( __FILE__ ) . 'class/autoloader.php' ); |
|
16 | -require_once( dirname( __FILE__ ) . 'class/registry.php' ); |
|
17 | -require_once( dirname( __FILE__ ) . 'class/registry/children.php' ); |
|
18 | -require_once( dirname( __FILE__ ) . 'class/registry/childreni.php' ); |
|
19 | -require_once( dirname( __FILE__ ) . 'class/registry/persistent.php' ); |
|
20 | -require_once( dirname( __FILE__ ) . 'class/registryi.php' ); |
|
21 | -require_once( dirname( __FILE__ ) . 'data/type.php' ); |
|
22 | -require_once( dirname( __FILE__ ) . 'data/type/integer.php' ); |
|
23 | -require_once( dirname( __FILE__ ) . 'data/type/text.php' ); |
|
24 | -require_once( dirname( __FILE__ ) . 'data/typei.php' ); |
|
25 | -require_once( dirname( __FILE__ ) . 'entity.php' ); |
|
26 | -require_once( dirname( __FILE__ ) . 'entity/array.php' ); |
|
27 | -require_once( dirname( __FILE__ ) . 'entity/attr.php' ); |
|
28 | -require_once( dirname( __FILE__ ) . 'entity/childi.php' ); |
|
29 | -require_once( dirname( __FILE__ ) . 'entity/comment.php' ); |
|
30 | -require_once( dirname( __FILE__ ) . 'entity/comment/author.php' ); |
|
31 | -require_once( dirname( __FILE__ ) . 'entity/comment/post.php' ); |
|
32 | -require_once( dirname( __FILE__ ) . 'entity/context.php' ); |
|
33 | -require_once( dirname( __FILE__ ) . 'entity/context/network.php' ); |
|
34 | -require_once( dirname( __FILE__ ) . 'entity/context/site.php' ); |
|
35 | -require_once( dirname( __FILE__ ) . 'entity/enumerablei.php' ); |
|
36 | -require_once( dirname( __FILE__ ) . 'entity/hierarchy.php' ); |
|
37 | -require_once( dirname( __FILE__ ) . 'entity/hierarchyi.php' ); |
|
38 | -require_once( dirname( __FILE__ ) . 'entity/parenti.php' ); |
|
39 | -require_once( dirname( __FILE__ ) . 'entity/post.php' ); |
|
40 | -require_once( dirname( __FILE__ ) . 'entity/post/author.php' ); |
|
41 | -require_once( dirname( __FILE__ ) . 'entity/post/content.php' ); |
|
42 | -require_once( dirname( __FILE__ ) . 'entity/post/terms.php' ); |
|
43 | -require_once( dirname( __FILE__ ) . 'entity/post/type.php' ); |
|
44 | -require_once( dirname( __FILE__ ) . 'entity/post/type/name.php' ); |
|
45 | -require_once( dirname( __FILE__ ) . 'entity/post/type/relationship.php' ); |
|
46 | -require_once( dirname( __FILE__ ) . 'entity/relationship.php' ); |
|
47 | -require_once( dirname( __FILE__ ) . 'entity/relationship/dynamic.php' ); |
|
48 | -require_once( dirname( __FILE__ ) . 'entity/restricted/visibilityi.php' ); |
|
49 | -require_once( dirname( __FILE__ ) . 'entity/site.php' ); |
|
50 | -require_once( dirname( __FILE__ ) . 'entity/term.php' ); |
|
51 | -require_once( dirname( __FILE__ ) . 'entity/term/id.php' ); |
|
52 | -require_once( dirname( __FILE__ ) . 'entity/user.php' ); |
|
53 | -require_once( dirname( __FILE__ ) . 'entity/user/role.php' ); |
|
54 | -require_once( dirname( __FILE__ ) . 'entity/user/role/name.php' ); |
|
55 | -require_once( dirname( __FILE__ ) . 'entity/user/roles.php' ); |
|
56 | -require_once( dirname( __FILE__ ) . 'entityish.php' ); |
|
57 | -require_once( dirname( __FILE__ ) . 'entityishi.php' ); |
|
58 | -require_once( dirname( __FILE__ ) . 'hierarchy.php' ); |
|
59 | -require_once( dirname( __FILE__ ) . 'hook/action.php' ); |
|
60 | -require_once( dirname( __FILE__ ) . 'hook/action/comment/new.php' ); |
|
61 | -require_once( dirname( __FILE__ ) . 'hook/action/post/publish.php' ); |
|
62 | -require_once( dirname( __FILE__ ) . 'hook/actioni.php' ); |
|
63 | -require_once( dirname( __FILE__ ) . 'hook/actions.php' ); |
|
64 | -require_once( dirname( __FILE__ ) . 'hook/arg.php' ); |
|
65 | -require_once( dirname( __FILE__ ) . 'hook/arg/current/post.php' ); |
|
66 | -require_once( dirname( __FILE__ ) . 'hook/arg/current/site.php' ); |
|
67 | -require_once( dirname( __FILE__ ) . 'hook/arg/current/user.php' ); |
|
68 | -require_once( dirname( __FILE__ ) . 'hook/arg/dynamic.php' ); |
|
69 | -require_once( dirname( __FILE__ ) . 'hook/condition.php' ); |
|
70 | -require_once( dirname( __FILE__ ) . 'hook/condition/entity/array/contains.php' ); |
|
71 | -require_once( dirname( __FILE__ ) . 'hook/condition/equals.php' ); |
|
72 | -require_once( dirname( __FILE__ ) . 'hook/condition/string/contains.php' ); |
|
73 | -require_once( dirname( __FILE__ ) . 'hook/conditioni.php' ); |
|
74 | -require_once( dirname( __FILE__ ) . 'hook/event.php' ); |
|
75 | -require_once( dirname( __FILE__ ) . 'hook/event/args.php' ); |
|
76 | -require_once( dirname( __FILE__ ) . 'hook/event/comment/leave.php' ); |
|
77 | -require_once( dirname( __FILE__ ) . 'hook/event/dynamic.php' ); |
|
78 | -require_once( dirname( __FILE__ ) . 'hook/event/media/upload.php' ); |
|
79 | -require_once( dirname( __FILE__ ) . 'hook/event/post/publish.php' ); |
|
80 | -require_once( dirname( __FILE__ ) . 'hook/event/user/register.php' ); |
|
81 | -require_once( dirname( __FILE__ ) . 'hook/event/user/visit.php' ); |
|
82 | -require_once( dirname( __FILE__ ) . 'hook/eventi.php' ); |
|
83 | -require_once( dirname( __FILE__ ) . 'hook/events.php' ); |
|
84 | -require_once( dirname( __FILE__ ) . 'hook/extension.php' ); |
|
85 | -require_once( dirname( __FILE__ ) . 'hook/extension/conditions.php' ); |
|
86 | -require_once( dirname( __FILE__ ) . 'hook/extension/periods.php' ); |
|
87 | -require_once( dirname( __FILE__ ) . 'hook/fire.php' ); |
|
88 | -require_once( dirname( __FILE__ ) . 'hook/firer.php' ); |
|
89 | -require_once( dirname( __FILE__ ) . 'hook/firer/reverse.php' ); |
|
90 | -require_once( dirname( __FILE__ ) . 'hook/fireri.php' ); |
|
91 | -require_once( dirname( __FILE__ ) . 'hook/hit/logger.php' ); |
|
92 | -require_once( dirname( __FILE__ ) . 'hook/reaction.php' ); |
|
93 | -require_once( dirname( __FILE__ ) . 'hook/reaction/options.php' ); |
|
94 | -require_once( dirname( __FILE__ ) . 'hook/reaction/store.php' ); |
|
95 | -require_once( dirname( __FILE__ ) . 'hook/reaction/store/options.php' ); |
|
96 | -require_once( dirname( __FILE__ ) . 'hook/reaction/store/options/network.php' ); |
|
97 | -require_once( dirname( __FILE__ ) . 'hook/reaction/storei.php' ); |
|
98 | -require_once( dirname( __FILE__ ) . 'hook/reaction/validator.php' ); |
|
99 | -require_once( dirname( __FILE__ ) . 'hook/reactioni.php' ); |
|
100 | -require_once( dirname( __FILE__ ) . 'hook/reactor.php' ); |
|
101 | -require_once( dirname( __FILE__ ) . 'hook/reactor/points.php' ); |
|
102 | -require_once( dirname( __FILE__ ) . 'hook/reactor/reversei.php' ); |
|
103 | -require_once( dirname( __FILE__ ) . 'hook/retroactive/conditions.php' ); |
|
104 | -require_once( dirname( __FILE__ ) . 'hook/retroactive/query.php' ); |
|
105 | -require_once( dirname( __FILE__ ) . 'hook/retroactive/query/modifieri.php' ); |
|
106 | -require_once( dirname( __FILE__ ) . 'hook/retroactive/queryable.php' ); |
|
107 | -require_once( dirname( __FILE__ ) . 'hook/retroactive/queryi.php' ); |
|
108 | -require_once( dirname( __FILE__ ) . 'hook/router.php' ); |
|
109 | -require_once( dirname( __FILE__ ) . 'hook/settings.php' ); |
|
110 | -require_once( dirname( __FILE__ ) . 'hook/settingsi.php' ); |
|
111 | -require_once( dirname( __FILE__ ) . 'hook/validator/exception.php' ); |
|
112 | -require_once( dirname( __FILE__ ) . 'hooks.php' ); |
|
113 | -require_once( dirname( __FILE__ ) . 'query/builder/db/mysql.php' ); |
|
114 | -require_once( dirname( __FILE__ ) . 'spec.php' ); |
|
115 | -require_once( dirname( __FILE__ ) . 'specedi.php' ); |
|
13 | +require_once(dirname(__FILE__).'app.php'); |
|
14 | +require_once(dirname(__FILE__).'app/registry.php'); |
|
15 | +require_once(dirname(__FILE__).'class/autoloader.php'); |
|
16 | +require_once(dirname(__FILE__).'class/registry.php'); |
|
17 | +require_once(dirname(__FILE__).'class/registry/children.php'); |
|
18 | +require_once(dirname(__FILE__).'class/registry/childreni.php'); |
|
19 | +require_once(dirname(__FILE__).'class/registry/persistent.php'); |
|
20 | +require_once(dirname(__FILE__).'class/registryi.php'); |
|
21 | +require_once(dirname(__FILE__).'data/type.php'); |
|
22 | +require_once(dirname(__FILE__).'data/type/integer.php'); |
|
23 | +require_once(dirname(__FILE__).'data/type/text.php'); |
|
24 | +require_once(dirname(__FILE__).'data/typei.php'); |
|
25 | +require_once(dirname(__FILE__).'entity.php'); |
|
26 | +require_once(dirname(__FILE__).'entity/array.php'); |
|
27 | +require_once(dirname(__FILE__).'entity/attr.php'); |
|
28 | +require_once(dirname(__FILE__).'entity/childi.php'); |
|
29 | +require_once(dirname(__FILE__).'entity/comment.php'); |
|
30 | +require_once(dirname(__FILE__).'entity/comment/author.php'); |
|
31 | +require_once(dirname(__FILE__).'entity/comment/post.php'); |
|
32 | +require_once(dirname(__FILE__).'entity/context.php'); |
|
33 | +require_once(dirname(__FILE__).'entity/context/network.php'); |
|
34 | +require_once(dirname(__FILE__).'entity/context/site.php'); |
|
35 | +require_once(dirname(__FILE__).'entity/enumerablei.php'); |
|
36 | +require_once(dirname(__FILE__).'entity/hierarchy.php'); |
|
37 | +require_once(dirname(__FILE__).'entity/hierarchyi.php'); |
|
38 | +require_once(dirname(__FILE__).'entity/parenti.php'); |
|
39 | +require_once(dirname(__FILE__).'entity/post.php'); |
|
40 | +require_once(dirname(__FILE__).'entity/post/author.php'); |
|
41 | +require_once(dirname(__FILE__).'entity/post/content.php'); |
|
42 | +require_once(dirname(__FILE__).'entity/post/terms.php'); |
|
43 | +require_once(dirname(__FILE__).'entity/post/type.php'); |
|
44 | +require_once(dirname(__FILE__).'entity/post/type/name.php'); |
|
45 | +require_once(dirname(__FILE__).'entity/post/type/relationship.php'); |
|
46 | +require_once(dirname(__FILE__).'entity/relationship.php'); |
|
47 | +require_once(dirname(__FILE__).'entity/relationship/dynamic.php'); |
|
48 | +require_once(dirname(__FILE__).'entity/restricted/visibilityi.php'); |
|
49 | +require_once(dirname(__FILE__).'entity/site.php'); |
|
50 | +require_once(dirname(__FILE__).'entity/term.php'); |
|
51 | +require_once(dirname(__FILE__).'entity/term/id.php'); |
|
52 | +require_once(dirname(__FILE__).'entity/user.php'); |
|
53 | +require_once(dirname(__FILE__).'entity/user/role.php'); |
|
54 | +require_once(dirname(__FILE__).'entity/user/role/name.php'); |
|
55 | +require_once(dirname(__FILE__).'entity/user/roles.php'); |
|
56 | +require_once(dirname(__FILE__).'entityish.php'); |
|
57 | +require_once(dirname(__FILE__).'entityishi.php'); |
|
58 | +require_once(dirname(__FILE__).'hierarchy.php'); |
|
59 | +require_once(dirname(__FILE__).'hook/action.php'); |
|
60 | +require_once(dirname(__FILE__).'hook/action/comment/new.php'); |
|
61 | +require_once(dirname(__FILE__).'hook/action/post/publish.php'); |
|
62 | +require_once(dirname(__FILE__).'hook/actioni.php'); |
|
63 | +require_once(dirname(__FILE__).'hook/actions.php'); |
|
64 | +require_once(dirname(__FILE__).'hook/arg.php'); |
|
65 | +require_once(dirname(__FILE__).'hook/arg/current/post.php'); |
|
66 | +require_once(dirname(__FILE__).'hook/arg/current/site.php'); |
|
67 | +require_once(dirname(__FILE__).'hook/arg/current/user.php'); |
|
68 | +require_once(dirname(__FILE__).'hook/arg/dynamic.php'); |
|
69 | +require_once(dirname(__FILE__).'hook/condition.php'); |
|
70 | +require_once(dirname(__FILE__).'hook/condition/entity/array/contains.php'); |
|
71 | +require_once(dirname(__FILE__).'hook/condition/equals.php'); |
|
72 | +require_once(dirname(__FILE__).'hook/condition/string/contains.php'); |
|
73 | +require_once(dirname(__FILE__).'hook/conditioni.php'); |
|
74 | +require_once(dirname(__FILE__).'hook/event.php'); |
|
75 | +require_once(dirname(__FILE__).'hook/event/args.php'); |
|
76 | +require_once(dirname(__FILE__).'hook/event/comment/leave.php'); |
|
77 | +require_once(dirname(__FILE__).'hook/event/dynamic.php'); |
|
78 | +require_once(dirname(__FILE__).'hook/event/media/upload.php'); |
|
79 | +require_once(dirname(__FILE__).'hook/event/post/publish.php'); |
|
80 | +require_once(dirname(__FILE__).'hook/event/user/register.php'); |
|
81 | +require_once(dirname(__FILE__).'hook/event/user/visit.php'); |
|
82 | +require_once(dirname(__FILE__).'hook/eventi.php'); |
|
83 | +require_once(dirname(__FILE__).'hook/events.php'); |
|
84 | +require_once(dirname(__FILE__).'hook/extension.php'); |
|
85 | +require_once(dirname(__FILE__).'hook/extension/conditions.php'); |
|
86 | +require_once(dirname(__FILE__).'hook/extension/periods.php'); |
|
87 | +require_once(dirname(__FILE__).'hook/fire.php'); |
|
88 | +require_once(dirname(__FILE__).'hook/firer.php'); |
|
89 | +require_once(dirname(__FILE__).'hook/firer/reverse.php'); |
|
90 | +require_once(dirname(__FILE__).'hook/fireri.php'); |
|
91 | +require_once(dirname(__FILE__).'hook/hit/logger.php'); |
|
92 | +require_once(dirname(__FILE__).'hook/reaction.php'); |
|
93 | +require_once(dirname(__FILE__).'hook/reaction/options.php'); |
|
94 | +require_once(dirname(__FILE__).'hook/reaction/store.php'); |
|
95 | +require_once(dirname(__FILE__).'hook/reaction/store/options.php'); |
|
96 | +require_once(dirname(__FILE__).'hook/reaction/store/options/network.php'); |
|
97 | +require_once(dirname(__FILE__).'hook/reaction/storei.php'); |
|
98 | +require_once(dirname(__FILE__).'hook/reaction/validator.php'); |
|
99 | +require_once(dirname(__FILE__).'hook/reactioni.php'); |
|
100 | +require_once(dirname(__FILE__).'hook/reactor.php'); |
|
101 | +require_once(dirname(__FILE__).'hook/reactor/points.php'); |
|
102 | +require_once(dirname(__FILE__).'hook/reactor/reversei.php'); |
|
103 | +require_once(dirname(__FILE__).'hook/retroactive/conditions.php'); |
|
104 | +require_once(dirname(__FILE__).'hook/retroactive/query.php'); |
|
105 | +require_once(dirname(__FILE__).'hook/retroactive/query/modifieri.php'); |
|
106 | +require_once(dirname(__FILE__).'hook/retroactive/queryable.php'); |
|
107 | +require_once(dirname(__FILE__).'hook/retroactive/queryi.php'); |
|
108 | +require_once(dirname(__FILE__).'hook/router.php'); |
|
109 | +require_once(dirname(__FILE__).'hook/settings.php'); |
|
110 | +require_once(dirname(__FILE__).'hook/settingsi.php'); |
|
111 | +require_once(dirname(__FILE__).'hook/validator/exception.php'); |
|
112 | +require_once(dirname(__FILE__).'hooks.php'); |
|
113 | +require_once(dirname(__FILE__).'query/builder/db/mysql.php'); |
|
114 | +require_once(dirname(__FILE__).'spec.php'); |
|
115 | +require_once(dirname(__FILE__).'specedi.php'); |
|
116 | 116 | // } |
117 | 117 | |
118 | 118 | // EOF |