@@ -64,7 +64,7 @@ |
||
64 | 64 | * |
65 | 65 | * @return bool Whether this condition is met. |
66 | 66 | */ |
67 | - public function is_met( array $settings, WordPoints_Hook_Event_Args $args ); |
|
67 | + public function is_met(array $settings, WordPoints_Hook_Event_Args $args); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | // EOF |
@@ -26,7 +26,7 @@ |
||
26 | 26 | /** |
27 | 27 | * @since 1.0.0 |
28 | 28 | */ |
29 | - public function __construct( $slug ) { |
|
29 | + public function __construct($slug) { |
|
30 | 30 | |
31 | 31 | $this->slug = $slug; |
32 | 32 | } |
@@ -45,16 +45,16 @@ discard block |
||
45 | 45 | * |
46 | 46 | * @param WordPoints_Hook_Arg[] $args The hook args. |
47 | 47 | */ |
48 | - public function __construct( array $args ) { |
|
48 | + public function __construct(array $args) { |
|
49 | 49 | |
50 | 50 | parent::__construct(); |
51 | 51 | |
52 | - foreach ( $args as $arg ) { |
|
52 | + foreach ($args as $arg) { |
|
53 | 53 | |
54 | 54 | $entity = $arg->get_entity(); |
55 | 55 | |
56 | - if ( $entity instanceof WordPoints_Entity ) { |
|
57 | - $this->entities[ $arg->get_slug() ] = $entity; |
|
56 | + if ($entity instanceof WordPoints_Entity) { |
|
57 | + $this->entities[$arg->get_slug()] = $entity; |
|
58 | 58 | } |
59 | 59 | } |
60 | 60 | } |
@@ -66,54 +66,54 @@ discard block |
||
66 | 66 | * |
67 | 67 | * @param WordPoints_Hook_Reaction_Validator $validator The validator. |
68 | 68 | */ |
69 | - public function set_validator( WordPoints_Hook_Reaction_Validator $validator ) { |
|
69 | + public function set_validator(WordPoints_Hook_Reaction_Validator $validator) { |
|
70 | 70 | $this->validator = $validator; |
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
74 | 74 | * @since 1.0.0 |
75 | 75 | */ |
76 | - public function descend( $child_slug ) { |
|
76 | + public function descend($child_slug) { |
|
77 | 77 | |
78 | - $result = parent::descend( $child_slug ); |
|
78 | + $result = parent::descend($child_slug); |
|
79 | 79 | |
80 | 80 | // Just in case no validator has been set. |
81 | - if ( ! $this->validator ) { |
|
81 | + if ( ! $this->validator) { |
|
82 | 82 | return $result; |
83 | 83 | } |
84 | 84 | |
85 | - if ( ! $result ) { |
|
85 | + if ( ! $result) { |
|
86 | 86 | |
87 | - if ( ! isset( $this->current ) ) { |
|
87 | + if ( ! isset($this->current)) { |
|
88 | 88 | |
89 | 89 | $this->validator->add_error( |
90 | 90 | sprintf( |
91 | - __( 'The %s arg is not registered for this event.', 'wordpoints' ) // TODO message |
|
91 | + __('The %s arg is not registered for this event.', 'wordpoints') // TODO message |
|
92 | 92 | , $child_slug |
93 | 93 | ) |
94 | 94 | ); |
95 | 95 | |
96 | - } elseif ( ! ( $this->current instanceof WordPoints_Entity_ParentI ) ) { |
|
96 | + } elseif ( ! ($this->current instanceof WordPoints_Entity_ParentI)) { |
|
97 | 97 | |
98 | 98 | $this->validator->add_error( |
99 | - __( 'Cannot get descendant of %s: not a parent.', 'wordpoints' ) // TODO message |
|
99 | + __('Cannot get descendant of %s: not a parent.', 'wordpoints') // TODO message |
|
100 | 100 | ); |
101 | 101 | |
102 | 102 | } else { |
103 | 103 | |
104 | - $child_arg = $this->current->get_child( $child_slug ); |
|
104 | + $child_arg = $this->current->get_child($child_slug); |
|
105 | 105 | |
106 | - if ( ! $child_arg ) { |
|
106 | + if ( ! $child_arg) { |
|
107 | 107 | $this->validator->add_error( |
108 | - __( '%s does not have a child "%s".', 'wordpoints' ) // TODO message |
|
108 | + __('%s does not have a child "%s".', 'wordpoints') // TODO message |
|
109 | 109 | , $this->push_on_descend ? $child_slug : null |
110 | 110 | ); |
111 | 111 | } |
112 | 112 | } |
113 | 113 | |
114 | - } elseif ( $this->push_on_descend ) { |
|
114 | + } elseif ($this->push_on_descend) { |
|
115 | 115 | |
116 | - $this->validator->push_field( $child_slug ); |
|
116 | + $this->validator->push_field($child_slug); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | return $result; |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | |
127 | 127 | $ascended = parent::ascend(); |
128 | 128 | |
129 | - if ( $ascended && $this->validator ) { |
|
129 | + if ($ascended && $this->validator) { |
|
130 | 130 | $this->validator->pop_field(); |
131 | 131 | } |
132 | 132 | |
@@ -136,10 +136,10 @@ discard block |
||
136 | 136 | /** |
137 | 137 | * @since 1.0.0 |
138 | 138 | */ |
139 | - public function get_from_hierarchy( array $hierarchy ) { |
|
139 | + public function get_from_hierarchy(array $hierarchy) { |
|
140 | 140 | |
141 | 141 | $this->push_on_descend = false; |
142 | - $entityish = parent::get_from_hierarchy( $hierarchy ); |
|
142 | + $entityish = parent::get_from_hierarchy($hierarchy); |
|
143 | 143 | $this->push_on_descend = true; |
144 | 144 | |
145 | 145 | return $entityish; |
@@ -18,14 +18,14 @@ |
||
18 | 18 | * @since 1.0.0 |
19 | 19 | */ |
20 | 20 | public function get_title() { |
21 | - return __( 'Register', 'wordpoints' ); |
|
21 | + return __('Register', 'wordpoints'); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
25 | 25 | * @since 1.0.0 |
26 | 26 | */ |
27 | 27 | public function get_description() { |
28 | - return __( 'Registering.', 'wordpoints' ); |
|
28 | + return __('Registering.', 'wordpoints'); |
|
29 | 29 | } |
30 | 30 | } |
31 | 31 |
@@ -18,14 +18,14 @@ |
||
18 | 18 | * @since 1.0.0 |
19 | 19 | */ |
20 | 20 | public function get_title() { |
21 | - return __( 'Visit', 'wordpoints' ); |
|
21 | + return __('Visit', 'wordpoints'); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
25 | 25 | * @since 1.0.0 |
26 | 26 | */ |
27 | 27 | public function get_description() { |
28 | - return __( 'When a logged-in user or guest visits the site.', 'wordpoints' ); |
|
28 | + return __('When a logged-in user or guest visits the site.', 'wordpoints'); |
|
29 | 29 | } |
30 | 30 | } |
31 | 31 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | /** |
18 | 18 | * @param string $slug The event slug. |
19 | 19 | */ |
20 | - public function __construct( $slug ); |
|
20 | + public function __construct($slug); |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * Get the event slug. |
@@ -37,13 +37,13 @@ discard block |
||
37 | 37 | /** |
38 | 38 | * @since 1.0.0 |
39 | 39 | */ |
40 | - public function __construct( $slug ) { |
|
40 | + public function __construct($slug) { |
|
41 | 41 | |
42 | 42 | $hooks = wordpoints_hooks(); |
43 | 43 | |
44 | 44 | $this->router = $hooks->router; |
45 | 45 | |
46 | - parent::__construct( $slug ); |
|
46 | + parent::__construct($slug); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function init() { |
53 | 53 | |
54 | - $this->sub_apps->register( 'args', 'WordPoints_Class_Registry_Children' ); |
|
54 | + $this->sub_apps->register('args', 'WordPoints_Class_Registry_Children'); |
|
55 | 55 | |
56 | 56 | parent::init(); |
57 | 57 | } |
@@ -75,29 +75,29 @@ discard block |
||
75 | 75 | * |
76 | 76 | * @return bool Whether the event was registered. |
77 | 77 | */ |
78 | - public function register( $slug, $class, array $args = array() ) { |
|
78 | + public function register($slug, $class, array $args = array()) { |
|
79 | 79 | |
80 | 80 | // TODO shoudl this be required? |
81 | - if ( ! isset( $args['actions'] ) ) { |
|
81 | + if ( ! isset($args['actions'])) { |
|
82 | 82 | return false; |
83 | 83 | } |
84 | 84 | |
85 | - parent::register( $slug, $class, $args ); |
|
85 | + parent::register($slug, $class, $args); |
|
86 | 86 | |
87 | - foreach ( $args['actions'] as $type => $actions ) { |
|
88 | - foreach ( (array) $actions as $action_slug ) { |
|
89 | - $this->router->add_event_to_action( $slug, $action_slug, $type ); |
|
87 | + foreach ($args['actions'] as $type => $actions) { |
|
88 | + foreach ((array) $actions as $action_slug) { |
|
89 | + $this->router->add_event_to_action($slug, $action_slug, $type); |
|
90 | 90 | } |
91 | 91 | } |
92 | 92 | |
93 | 93 | // TODO should this be required? |
94 | - if ( isset( $args['args'] ) ) { |
|
95 | - foreach ( $args['args'] as $arg_slug => $class ) { |
|
96 | - $this->args->register( $slug, $arg_slug, $class ); |
|
94 | + if (isset($args['args'])) { |
|
95 | + foreach ($args['args'] as $arg_slug => $class) { |
|
96 | + $this->args->register($slug, $arg_slug, $class); |
|
97 | 97 | } |
98 | 98 | } |
99 | 99 | |
100 | - $this->event_data[ $slug ] = $args; |
|
100 | + $this->event_data[$slug] = $args; |
|
101 | 101 | |
102 | 102 | return true; |
103 | 103 | } |
@@ -105,23 +105,23 @@ discard block |
||
105 | 105 | /** |
106 | 106 | * @since 1.0.0 |
107 | 107 | */ |
108 | - public function deregister( $slug ) { |
|
108 | + public function deregister($slug) { |
|
109 | 109 | |
110 | - if ( ! $this->is_registered( $slug ) ) { |
|
110 | + if ( ! $this->is_registered($slug)) { |
|
111 | 111 | return; |
112 | 112 | } |
113 | 113 | |
114 | - parent::deregister( $slug ); |
|
114 | + parent::deregister($slug); |
|
115 | 115 | |
116 | - foreach ( (array) $this->event_data[ $slug ]['actions'] as $type => $actions ) { |
|
117 | - foreach ( (array) $actions as $action_slug ) { |
|
118 | - $this->router->remove_event_from_action( $slug, $action_slug, $type ); |
|
116 | + foreach ((array) $this->event_data[$slug]['actions'] as $type => $actions) { |
|
117 | + foreach ((array) $actions as $action_slug) { |
|
118 | + $this->router->remove_event_from_action($slug, $action_slug, $type); |
|
119 | 119 | } |
120 | 120 | } |
121 | 121 | |
122 | - $this->args->deregister_children( $slug ); |
|
122 | + $this->args->deregister_children($slug); |
|
123 | 123 | |
124 | - unset( $this->event_data[ $slug ] ); |
|
124 | + unset($this->event_data[$slug]); |
|
125 | 125 | } |
126 | 126 | } |
127 | 127 |
@@ -65,15 +65,15 @@ discard block |
||
65 | 65 | WordPoints_Hook_Event_Args $event_args |
66 | 66 | ) { |
67 | 67 | |
68 | - if ( ! isset( $settings[ $this->slug ] ) ) { |
|
68 | + if ( ! isset($settings[$this->slug])) { |
|
69 | 69 | return $settings; |
70 | 70 | } |
71 | 71 | |
72 | 72 | $this->validator = $validator; |
73 | 73 | $this->event_args = $event_args; |
74 | 74 | |
75 | - $this->validator->push_field( $this->slug ); |
|
76 | - $settings[ $this->slug ] = $this->{"validate_{$this->slug}"}( $settings[ $this->slug ] ); |
|
75 | + $this->validator->push_field($this->slug); |
|
76 | + $settings[$this->slug] = $this->{"validate_{$this->slug}"}($settings[$this->slug]); |
|
77 | 77 | $this->validator->pop_field(); |
78 | 78 | |
79 | 79 | return $settings; |
@@ -82,12 +82,12 @@ discard block |
||
82 | 82 | /** |
83 | 83 | * @since 1.0.0 |
84 | 84 | */ |
85 | - public function update_settings( WordPoints_Hook_ReactionI $reaction, array $settings ) { |
|
85 | + public function update_settings(WordPoints_Hook_ReactionI $reaction, array $settings) { |
|
86 | 86 | |
87 | - if ( isset( $settings[ $this->slug ] ) ) { |
|
88 | - $reaction->update_meta( $this->slug, $settings[ $this->slug ] ); |
|
87 | + if (isset($settings[$this->slug])) { |
|
88 | + $reaction->update_meta($this->slug, $settings[$this->slug]); |
|
89 | 89 | } else { |
90 | - $reaction->delete_meta( $this->slug ); |
|
90 | + $reaction->delete_meta($this->slug); |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 |
@@ -17,21 +17,21 @@ |
||
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 ( $hooks->reactors->get_all() as $reactor ) { |
|
24 | + foreach ($hooks->reactors->get_all() as $reactor) { |
|
25 | 25 | |
26 | - if ( ! ( $reactor instanceof WordPoints_Hook_Reactor_ReverseI ) ) { |
|
26 | + if ( ! ($reactor instanceof WordPoints_Hook_Reactor_ReverseI)) { |
|
27 | 27 | continue; |
28 | 28 | } |
29 | 29 | |
30 | - $reactor->reverse_hits( $event_slug, $event_args ); |
|
30 | + $reactor->reverse_hits($event_slug, $event_args); |
|
31 | 31 | |
32 | - foreach ( $hooks->extensions->get_all() as $extension ) { |
|
33 | - if ( $extension instanceof WordPoints_Hook_Extension_ReverseI ) { |
|
34 | - $extension->after_reverse( $event_slug, $event_args, $reactor ); |
|
32 | + foreach ($hooks->extensions->get_all() as $extension) { |
|
33 | + if ($extension instanceof WordPoints_Hook_Extension_ReverseI) { |
|
34 | + $extension->after_reverse($event_slug, $event_args, $reactor); |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 | } |