@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | * @param mixed $recurrence The data used to determine the schedule's recurrance. |
40 | 40 | * @param DateTime|null $first (Optional) The date & time the first instance of this interval schedule ran. Default null, meaning this is the first instance. |
41 | 41 | */ |
42 | - public function __construct( DateTime $date, $recurrence, DateTime $first = null ) { |
|
43 | - parent::__construct( $date ); |
|
44 | - $this->first_date = empty( $first ) ? $date : $first; |
|
42 | + public function __construct(DateTime $date, $recurrence, DateTime $first = null) { |
|
43 | + parent::__construct($date); |
|
44 | + $this->first_date = empty($first) ? $date : $first; |
|
45 | 45 | $this->recurrence = $recurrence; |
46 | 46 | } |
47 | 47 | |
@@ -75,10 +75,10 @@ discard block |
||
75 | 75 | public function __sleep() { |
76 | 76 | $sleep_params = parent::__sleep(); |
77 | 77 | $this->first_timestamp = $this->first_date->getTimestamp(); |
78 | - return array_merge( $sleep_params, array( |
|
78 | + return array_merge($sleep_params, array( |
|
79 | 79 | 'first_timestamp', |
80 | 80 | 'recurrence' |
81 | - ) ); |
|
81 | + )); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -93,8 +93,8 @@ discard block |
||
93 | 93 | */ |
94 | 94 | public function __wakeup() { |
95 | 95 | parent::__wakeup(); |
96 | - if ( $this->first_timestamp > 0 ) { |
|
97 | - $this->first_date = as_get_datetime_object( $this->first_timestamp ); |
|
96 | + if ($this->first_timestamp > 0) { |
|
97 | + $this->first_date = as_get_datetime_object($this->first_timestamp); |
|
98 | 98 | } else { |
99 | 99 | $this->first_date = $this->get_date(); |
100 | 100 | } |
@@ -15,17 +15,17 @@ discard block |
||
15 | 15 | * @param DateTime $date |
16 | 16 | * @return ActionScheduler_DateTime |
17 | 17 | */ |
18 | - public static function set_local_timezone( DateTime $date ) { |
|
18 | + public static function set_local_timezone(DateTime $date) { |
|
19 | 19 | |
20 | 20 | // Accept a DateTime for easier backward compatibility, even though we require methods on ActionScheduler_DateTime |
21 | - if ( ! is_a( $date, 'ActionScheduler_DateTime' ) ) { |
|
22 | - $date = as_get_datetime_object( $date->format( 'U' ) ); |
|
21 | + if (!is_a($date, 'ActionScheduler_DateTime')) { |
|
22 | + $date = as_get_datetime_object($date->format('U')); |
|
23 | 23 | } |
24 | 24 | |
25 | - if ( get_option( 'timezone_string' ) ) { |
|
26 | - $date->setTimezone( new DateTimeZone( self::get_local_timezone_string() ) ); |
|
25 | + if (get_option('timezone_string')) { |
|
26 | + $date->setTimezone(new DateTimeZone(self::get_local_timezone_string())); |
|
27 | 27 | } else { |
28 | - $date->setUtcOffset( self::get_local_timezone_offset() ); |
|
28 | + $date->setUtcOffset(self::get_local_timezone_offset()); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | return $date; |
@@ -44,16 +44,16 @@ discard block |
||
44 | 44 | * @since 2.1.0 |
45 | 45 | * @return string PHP timezone string for the site or empty if no timezone string is available. |
46 | 46 | */ |
47 | - protected static function get_local_timezone_string( $reset = false ) { |
|
47 | + protected static function get_local_timezone_string($reset = false) { |
|
48 | 48 | // If site timezone string exists, return it. |
49 | - $timezone = get_option( 'timezone_string' ); |
|
50 | - if ( $timezone ) { |
|
49 | + $timezone = get_option('timezone_string'); |
|
50 | + if ($timezone) { |
|
51 | 51 | return $timezone; |
52 | 52 | } |
53 | 53 | |
54 | 54 | // Get UTC offset, if it isn't set then return UTC. |
55 | - $utc_offset = intval( get_option( 'gmt_offset', 0 ) ); |
|
56 | - if ( 0 === $utc_offset ) { |
|
55 | + $utc_offset = intval(get_option('gmt_offset', 0)); |
|
56 | + if (0 === $utc_offset) { |
|
57 | 57 | return 'UTC'; |
58 | 58 | } |
59 | 59 | |
@@ -61,15 +61,15 @@ discard block |
||
61 | 61 | $utc_offset *= 3600; |
62 | 62 | |
63 | 63 | // Attempt to guess the timezone string from the UTC offset. |
64 | - $timezone = timezone_name_from_abbr( '', $utc_offset ); |
|
65 | - if ( $timezone ) { |
|
64 | + $timezone = timezone_name_from_abbr('', $utc_offset); |
|
65 | + if ($timezone) { |
|
66 | 66 | return $timezone; |
67 | 67 | } |
68 | 68 | |
69 | 69 | // Last try, guess timezone string manually. |
70 | - foreach ( timezone_abbreviations_list() as $abbr ) { |
|
71 | - foreach ( $abbr as $city ) { |
|
72 | - if ( (bool) date( 'I' ) === (bool) $city['dst'] && $city['timezone_id'] && intval( $city['offset'] ) === $utc_offset ) { |
|
70 | + foreach (timezone_abbreviations_list() as $abbr) { |
|
71 | + foreach ($abbr as $city) { |
|
72 | + if ((bool) date('I') === (bool) $city['dst'] && $city['timezone_id'] && intval($city['offset']) === $utc_offset) { |
|
73 | 73 | return $city['timezone_id']; |
74 | 74 | } |
75 | 75 | } |
@@ -86,48 +86,48 @@ discard block |
||
86 | 86 | * @return float |
87 | 87 | */ |
88 | 88 | protected static function get_local_timezone_offset() { |
89 | - $timezone = get_option( 'timezone_string' ); |
|
89 | + $timezone = get_option('timezone_string'); |
|
90 | 90 | |
91 | - if ( $timezone ) { |
|
92 | - $timezone_object = new DateTimeZone( $timezone ); |
|
93 | - return $timezone_object->getOffset( new DateTime( 'now' ) ); |
|
91 | + if ($timezone) { |
|
92 | + $timezone_object = new DateTimeZone($timezone); |
|
93 | + return $timezone_object->getOffset(new DateTime('now')); |
|
94 | 94 | } else { |
95 | - return floatval( get_option( 'gmt_offset', 0 ) ) * HOUR_IN_SECONDS; |
|
95 | + return floatval(get_option('gmt_offset', 0)) * HOUR_IN_SECONDS; |
|
96 | 96 | } |
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
100 | 100 | * @deprecated 2.1.0 |
101 | 101 | */ |
102 | - public static function get_local_timezone( $reset = FALSE ) { |
|
103 | - _deprecated_function( __FUNCTION__, '2.1.0', 'ActionScheduler_TimezoneHelper::set_local_timezone()' ); |
|
104 | - if ( $reset ) { |
|
102 | + public static function get_local_timezone($reset = FALSE) { |
|
103 | + _deprecated_function(__FUNCTION__, '2.1.0', 'ActionScheduler_TimezoneHelper::set_local_timezone()'); |
|
104 | + if ($reset) { |
|
105 | 105 | self::$local_timezone = NULL; |
106 | 106 | } |
107 | - if ( !isset(self::$local_timezone) ) { |
|
107 | + if (!isset(self::$local_timezone)) { |
|
108 | 108 | $tzstring = get_option('timezone_string'); |
109 | 109 | |
110 | - if ( empty($tzstring) ) { |
|
110 | + if (empty($tzstring)) { |
|
111 | 111 | $gmt_offset = get_option('gmt_offset'); |
112 | - if ( $gmt_offset == 0 ) { |
|
112 | + if ($gmt_offset == 0) { |
|
113 | 113 | $tzstring = 'UTC'; |
114 | 114 | } else { |
115 | 115 | $gmt_offset *= HOUR_IN_SECONDS; |
116 | - $tzstring = timezone_name_from_abbr( '', $gmt_offset, 1 ); |
|
116 | + $tzstring = timezone_name_from_abbr('', $gmt_offset, 1); |
|
117 | 117 | |
118 | 118 | // If there's no timezone string, try again with no DST. |
119 | - if ( false === $tzstring ) { |
|
120 | - $tzstring = timezone_name_from_abbr( '', $gmt_offset, 0 ); |
|
119 | + if (false === $tzstring) { |
|
120 | + $tzstring = timezone_name_from_abbr('', $gmt_offset, 0); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | // Try mapping to the first abbreviation we can find. |
124 | - if ( false === $tzstring ) { |
|
125 | - $is_dst = date( 'I' ); |
|
126 | - foreach ( timezone_abbreviations_list() as $abbr ) { |
|
127 | - foreach ( $abbr as $city ) { |
|
128 | - if ( $city['dst'] == $is_dst && $city['offset'] == $gmt_offset ) { |
|
124 | + if (false === $tzstring) { |
|
125 | + $is_dst = date('I'); |
|
126 | + foreach (timezone_abbreviations_list() as $abbr) { |
|
127 | + foreach ($abbr as $city) { |
|
128 | + if ($city['dst'] == $is_dst && $city['offset'] == $gmt_offset) { |
|
129 | 129 | // If there's no valid timezone ID, keep looking. |
130 | - if ( null === $city['timezone_id'] ) { |
|
130 | + if (null === $city['timezone_id']) { |
|
131 | 131 | continue; |
132 | 132 | } |
133 | 133 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | } |
140 | 140 | |
141 | 141 | // If we still have no valid string, then fall back to UTC. |
142 | - if ( false === $tzstring ) { |
|
142 | + if (false === $tzstring) { |
|
143 | 143 | $tzstring = 'UTC'; |
144 | 144 | } |
145 | 145 | } |
@@ -26,21 +26,21 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @return string The action ID |
28 | 28 | */ |
29 | - abstract public function save_action( ActionScheduler_Action $action, DateTime $scheduled_date = NULL ); |
|
29 | + abstract public function save_action(ActionScheduler_Action $action, DateTime $scheduled_date = NULL); |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * @param string $action_id |
33 | 33 | * |
34 | 34 | * @return ActionScheduler_Action |
35 | 35 | */ |
36 | - abstract public function fetch_action( $action_id ); |
|
36 | + abstract public function fetch_action($action_id); |
|
37 | 37 | |
38 | 38 | /** |
39 | 39 | * @param string $hook Hook name/slug. |
40 | 40 | * @param array $params Hook arguments. |
41 | 41 | * @return string ID of the next action matching the criteria. |
42 | 42 | */ |
43 | - abstract public function find_action( $hook, $params = array() ); |
|
43 | + abstract public function find_action($hook, $params = array()); |
|
44 | 44 | |
45 | 45 | /** |
46 | 46 | * @param array $query Query parameters. |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * |
49 | 49 | * @return array|int The IDs of or count of actions matching the query. |
50 | 50 | */ |
51 | - abstract public function query_actions( $query = array(), $query_type = 'select' ); |
|
51 | + abstract public function query_actions($query = array(), $query_type = 'select'); |
|
52 | 52 | |
53 | 53 | /** |
54 | 54 | * Get a count of all actions in the store, grouped by status |
@@ -60,19 +60,19 @@ discard block |
||
60 | 60 | /** |
61 | 61 | * @param string $action_id |
62 | 62 | */ |
63 | - abstract public function cancel_action( $action_id ); |
|
63 | + abstract public function cancel_action($action_id); |
|
64 | 64 | |
65 | 65 | /** |
66 | 66 | * @param string $action_id |
67 | 67 | */ |
68 | - abstract public function delete_action( $action_id ); |
|
68 | + abstract public function delete_action($action_id); |
|
69 | 69 | |
70 | 70 | /** |
71 | 71 | * @param string $action_id |
72 | 72 | * |
73 | 73 | * @return DateTime The date the action is schedule to run, or the date that it ran. |
74 | 74 | */ |
75 | - abstract public function get_date( $action_id ); |
|
75 | + abstract public function get_date($action_id); |
|
76 | 76 | |
77 | 77 | |
78 | 78 | /** |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @return ActionScheduler_ActionClaim |
85 | 85 | */ |
86 | - abstract public function stake_claim( $max_actions = 10, DateTime $before_date = null, $hooks = array(), $group = '' ); |
|
86 | + abstract public function stake_claim($max_actions = 10, DateTime $before_date = null, $hooks = array(), $group = ''); |
|
87 | 87 | |
88 | 88 | /** |
89 | 89 | * @return int |
@@ -93,53 +93,53 @@ discard block |
||
93 | 93 | /** |
94 | 94 | * @param ActionScheduler_ActionClaim $claim |
95 | 95 | */ |
96 | - abstract public function release_claim( ActionScheduler_ActionClaim $claim ); |
|
96 | + abstract public function release_claim(ActionScheduler_ActionClaim $claim); |
|
97 | 97 | |
98 | 98 | /** |
99 | 99 | * @param string $action_id |
100 | 100 | */ |
101 | - abstract public function unclaim_action( $action_id ); |
|
101 | + abstract public function unclaim_action($action_id); |
|
102 | 102 | |
103 | 103 | /** |
104 | 104 | * @param string $action_id |
105 | 105 | */ |
106 | - abstract public function mark_failure( $action_id ); |
|
106 | + abstract public function mark_failure($action_id); |
|
107 | 107 | |
108 | 108 | /** |
109 | 109 | * @param string $action_id |
110 | 110 | */ |
111 | - abstract public function log_execution( $action_id ); |
|
111 | + abstract public function log_execution($action_id); |
|
112 | 112 | |
113 | 113 | /** |
114 | 114 | * @param string $action_id |
115 | 115 | */ |
116 | - abstract public function mark_complete( $action_id ); |
|
116 | + abstract public function mark_complete($action_id); |
|
117 | 117 | |
118 | 118 | /** |
119 | 119 | * @param string $action_id |
120 | 120 | * |
121 | 121 | * @return string |
122 | 122 | */ |
123 | - abstract public function get_status( $action_id ); |
|
123 | + abstract public function get_status($action_id); |
|
124 | 124 | |
125 | 125 | /** |
126 | 126 | * @param string $action_id |
127 | 127 | * @return mixed |
128 | 128 | */ |
129 | - abstract public function get_claim_id( $action_id ); |
|
129 | + abstract public function get_claim_id($action_id); |
|
130 | 130 | |
131 | 131 | /** |
132 | 132 | * @param string $claim_id |
133 | 133 | * @return array |
134 | 134 | */ |
135 | - abstract public function find_actions_by_claim_id( $claim_id ); |
|
135 | + abstract public function find_actions_by_claim_id($claim_id); |
|
136 | 136 | |
137 | 137 | /** |
138 | 138 | * @param string $comparison_operator |
139 | 139 | * @return string |
140 | 140 | */ |
141 | - protected function validate_sql_comparator( $comparison_operator ) { |
|
142 | - if ( in_array( $comparison_operator, array('!=', '>', '>=', '<', '<=', '=') ) ) { |
|
141 | + protected function validate_sql_comparator($comparison_operator) { |
|
142 | + if (in_array($comparison_operator, array('!=', '>', '>=', '<', '<=', '='))) { |
|
143 | 143 | return $comparison_operator; |
144 | 144 | } |
145 | 145 | return '='; |
@@ -152,14 +152,14 @@ discard block |
||
152 | 152 | * @param DateTime $scheduled_date (optional) |
153 | 153 | * @return string |
154 | 154 | */ |
155 | - protected function get_scheduled_date_string( ActionScheduler_Action $action, DateTime $scheduled_date = NULL ) { |
|
155 | + protected function get_scheduled_date_string(ActionScheduler_Action $action, DateTime $scheduled_date = NULL) { |
|
156 | 156 | $next = null === $scheduled_date ? $action->get_schedule()->get_date() : $scheduled_date; |
157 | - if ( ! $next ) { |
|
157 | + if (!$next) { |
|
158 | 158 | return '0000-00-00 00:00:00'; |
159 | 159 | } |
160 | - $next->setTimezone( new DateTimeZone( 'UTC' ) ); |
|
160 | + $next->setTimezone(new DateTimeZone('UTC')); |
|
161 | 161 | |
162 | - return $next->format( 'Y-m-d H:i:s' ); |
|
162 | + return $next->format('Y-m-d H:i:s'); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -169,14 +169,14 @@ discard block |
||
169 | 169 | * @param DateTime $scheduled_date (optional) |
170 | 170 | * @return string |
171 | 171 | */ |
172 | - protected function get_scheduled_date_string_local( ActionScheduler_Action $action, DateTime $scheduled_date = NULL ) { |
|
172 | + protected function get_scheduled_date_string_local(ActionScheduler_Action $action, DateTime $scheduled_date = NULL) { |
|
173 | 173 | $next = null === $scheduled_date ? $action->get_schedule()->get_date() : $scheduled_date; |
174 | - if ( ! $next ) { |
|
174 | + if (!$next) { |
|
175 | 175 | return '0000-00-00 00:00:00'; |
176 | 176 | } |
177 | 177 | |
178 | - ActionScheduler_TimezoneHelper::set_local_timezone( $next ); |
|
179 | - return $next->format( 'Y-m-d H:i:s' ); |
|
178 | + ActionScheduler_TimezoneHelper::set_local_timezone($next); |
|
179 | + return $next->format('Y-m-d H:i:s'); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | /** |
@@ -187,15 +187,15 @@ discard block |
||
187 | 187 | * |
188 | 188 | * @throws ActionScheduler_InvalidActionException When the decoded arguments are invalid. |
189 | 189 | */ |
190 | - protected function validate_args( $args, $action_id ) { |
|
190 | + protected function validate_args($args, $action_id) { |
|
191 | 191 | // Ensure we have an array of args. |
192 | - if ( ! is_array( $args ) ) { |
|
193 | - throw ActionScheduler_InvalidActionException::from_decoding_args( $action_id ); |
|
192 | + if (!is_array($args)) { |
|
193 | + throw ActionScheduler_InvalidActionException::from_decoding_args($action_id); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | // Validate JSON decoding if possible. |
197 | - if ( function_exists( 'json_last_error' ) && JSON_ERROR_NONE !== json_last_error() ) { |
|
198 | - throw ActionScheduler_InvalidActionException::from_decoding_args( $action_id, $args ); |
|
197 | + if (function_exists('json_last_error') && JSON_ERROR_NONE !== json_last_error()) { |
|
198 | + throw ActionScheduler_InvalidActionException::from_decoding_args($action_id, $args); |
|
199 | 199 | } |
200 | 200 | } |
201 | 201 | |
@@ -207,9 +207,9 @@ discard block |
||
207 | 207 | * |
208 | 208 | * @throws ActionScheduler_InvalidActionException When the schedule is invalid. |
209 | 209 | */ |
210 | - protected function validate_schedule( $schedule, $action_id ) { |
|
211 | - if ( empty( $schedule ) || ! is_a( $schedule, 'ActionScheduler_Schedule' ) ) { |
|
212 | - throw ActionScheduler_InvalidActionException::from_schedule( $action_id, $schedule ); |
|
210 | + protected function validate_schedule($schedule, $action_id) { |
|
211 | + if (empty($schedule) || !is_a($schedule, 'ActionScheduler_Schedule')) { |
|
212 | + throw ActionScheduler_InvalidActionException::from_schedule($action_id, $schedule); |
|
213 | 213 | } |
214 | 214 | } |
215 | 215 | |
@@ -222,9 +222,9 @@ discard block |
||
222 | 222 | * @param ActionScheduler_Action $action Action to be validated. |
223 | 223 | * @throws InvalidArgumentException When json encoded args is too long. |
224 | 224 | */ |
225 | - protected function validate_action( ActionScheduler_Action $action ) { |
|
226 | - if ( strlen( json_encode( $action->get_args() ) ) > static::$max_args_length ) { |
|
227 | - throw new InvalidArgumentException( sprintf( __( 'ActionScheduler_Action::$args too long. To ensure the args column can be indexed, action args should not be more than %d characters when encoded as JSON.', 'action-scheduler' ), static::$max_args_length ) ); |
|
225 | + protected function validate_action(ActionScheduler_Action $action) { |
|
226 | + if (strlen(json_encode($action->get_args())) > static::$max_args_length) { |
|
227 | + throw new InvalidArgumentException(sprintf(__('ActionScheduler_Action::$args too long. To ensure the args column can be indexed, action args should not be more than %d characters when encoded as JSON.', 'action-scheduler'), static::$max_args_length)); |
|
228 | 228 | } |
229 | 229 | } |
230 | 230 | |
@@ -237,9 +237,9 @@ discard block |
||
237 | 237 | * |
238 | 238 | * @return void |
239 | 239 | */ |
240 | - public function cancel_actions_by_hook( $hook ) { |
|
240 | + public function cancel_actions_by_hook($hook) { |
|
241 | 241 | $action_ids = true; |
242 | - while ( ! empty( $action_ids ) ) { |
|
242 | + while (!empty($action_ids)) { |
|
243 | 243 | $action_ids = $this->query_actions( |
244 | 244 | array( |
245 | 245 | 'hook' => $hook, |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | ) |
249 | 249 | ); |
250 | 250 | |
251 | - $this->bulk_cancel_actions( $action_ids ); |
|
251 | + $this->bulk_cancel_actions($action_ids); |
|
252 | 252 | } |
253 | 253 | } |
254 | 254 | |
@@ -261,9 +261,9 @@ discard block |
||
261 | 261 | * |
262 | 262 | * @return void |
263 | 263 | */ |
264 | - public function cancel_actions_by_group( $group ) { |
|
264 | + public function cancel_actions_by_group($group) { |
|
265 | 265 | $action_ids = true; |
266 | - while ( ! empty( $action_ids ) ) { |
|
266 | + while (!empty($action_ids)) { |
|
267 | 267 | $action_ids = $this->query_actions( |
268 | 268 | array( |
269 | 269 | 'group' => $group, |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | ) |
273 | 273 | ); |
274 | 274 | |
275 | - $this->bulk_cancel_actions( $action_ids ); |
|
275 | + $this->bulk_cancel_actions($action_ids); |
|
276 | 276 | } |
277 | 277 | } |
278 | 278 | |
@@ -285,12 +285,12 @@ discard block |
||
285 | 285 | * |
286 | 286 | * @return void |
287 | 287 | */ |
288 | - private function bulk_cancel_actions( $action_ids ) { |
|
289 | - foreach ( $action_ids as $action_id ) { |
|
290 | - $this->cancel_action( $action_id ); |
|
288 | + private function bulk_cancel_actions($action_ids) { |
|
289 | + foreach ($action_ids as $action_id) { |
|
290 | + $this->cancel_action($action_id); |
|
291 | 291 | } |
292 | 292 | |
293 | - do_action( 'action_scheduler_bulk_cancel_actions', $action_ids ); |
|
293 | + do_action('action_scheduler_bulk_cancel_actions', $action_ids); |
|
294 | 294 | } |
295 | 295 | |
296 | 296 | /** |
@@ -298,11 +298,11 @@ discard block |
||
298 | 298 | */ |
299 | 299 | public function get_status_labels() { |
300 | 300 | return array( |
301 | - self::STATUS_COMPLETE => __( 'Complete', 'action-scheduler' ), |
|
302 | - self::STATUS_PENDING => __( 'Pending', 'action-scheduler' ), |
|
303 | - self::STATUS_RUNNING => __( 'In-progress', 'action-scheduler' ), |
|
304 | - self::STATUS_FAILED => __( 'Failed', 'action-scheduler' ), |
|
305 | - self::STATUS_CANCELED => __( 'Canceled', 'action-scheduler' ), |
|
301 | + self::STATUS_COMPLETE => __('Complete', 'action-scheduler'), |
|
302 | + self::STATUS_PENDING => __('Pending', 'action-scheduler'), |
|
303 | + self::STATUS_RUNNING => __('In-progress', 'action-scheduler'), |
|
304 | + self::STATUS_FAILED => __('Failed', 'action-scheduler'), |
|
305 | + self::STATUS_CANCELED => __('Canceled', 'action-scheduler'), |
|
306 | 306 | ); |
307 | 307 | } |
308 | 308 | |
@@ -314,12 +314,12 @@ discard block |
||
314 | 314 | * @return string |
315 | 315 | */ |
316 | 316 | public function has_pending_actions_due() { |
317 | - $pending_actions = $this->query_actions( array( |
|
317 | + $pending_actions = $this->query_actions(array( |
|
318 | 318 | 'date' => as_get_datetime_object(), |
319 | 319 | 'status' => ActionScheduler_Store::STATUS_PENDING, |
320 | - ) ); |
|
320 | + )); |
|
321 | 321 | |
322 | - return ! empty( $pending_actions ); |
|
322 | + return !empty($pending_actions); |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | /** |
@@ -330,14 +330,14 @@ discard block |
||
330 | 330 | /** |
331 | 331 | * Callable function to mark an action as migrated optionally overridden in derived classes. |
332 | 332 | */ |
333 | - public function mark_migrated( $action_id ) {} |
|
333 | + public function mark_migrated($action_id) {} |
|
334 | 334 | |
335 | 335 | /** |
336 | 336 | * @return ActionScheduler_Store |
337 | 337 | */ |
338 | 338 | public static function instance() { |
339 | - if ( empty( self::$store ) ) { |
|
340 | - $class = apply_filters( 'action_scheduler_store_class', self::DEFAULT_CLASS ); |
|
339 | + if (empty(self::$store)) { |
|
340 | + $class = apply_filters('action_scheduler_store_class', self::DEFAULT_CLASS); |
|
341 | 341 | self::$store = new $class(); |
342 | 342 | } |
343 | 343 | return self::$store; |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * @param DateTime $date The date & time to run the action. |
24 | 24 | */ |
25 | - public function __construct( DateTime $date ) { |
|
25 | + public function __construct(DateTime $date) { |
|
26 | 26 | $this->scheduled_date = $date; |
27 | 27 | } |
28 | 28 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * @param DateTime $after |
40 | 40 | * @return DateTime |
41 | 41 | */ |
42 | - abstract protected function calculate_next( DateTime $after ); |
|
42 | + abstract protected function calculate_next(DateTime $after); |
|
43 | 43 | |
44 | 44 | /** |
45 | 45 | * Get the next date & time when this schedule should run after a given date & time. |
@@ -47,10 +47,10 @@ discard block |
||
47 | 47 | * @param DateTime $after |
48 | 48 | * @return DateTime|null |
49 | 49 | */ |
50 | - public function get_next( DateTime $after ) { |
|
50 | + public function get_next(DateTime $after) { |
|
51 | 51 | $after = clone $after; |
52 | - if ( $after > $this->scheduled_date ) { |
|
53 | - $after = $this->calculate_next( $after ); |
|
52 | + if ($after > $this->scheduled_date) { |
|
53 | + $after = $this->calculate_next($after); |
|
54 | 54 | return $after; |
55 | 55 | } |
56 | 56 | return clone $this->scheduled_date; |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | } |
78 | 78 | |
79 | 79 | public function __wakeup() { |
80 | - $this->scheduled_date = as_get_datetime_object( $this->scheduled_timestamp ); |
|
81 | - unset( $this->scheduled_timestamp ); |
|
80 | + $this->scheduled_date = as_get_datetime_object($this->scheduled_timestamp); |
|
81 | + unset($this->scheduled_timestamp); |
|
82 | 82 | } |
83 | 83 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * @return ActionScheduler_Logger |
12 | 12 | */ |
13 | 13 | public static function instance() { |
14 | - if ( empty(self::$logger) ) { |
|
14 | + if (empty(self::$logger)) { |
|
15 | 15 | $class = apply_filters('action_scheduler_logger_class', 'ActionScheduler_wpCommentLogger'); |
16 | 16 | self::$logger = new $class(); |
17 | 17 | } |
@@ -25,21 +25,21 @@ discard block |
||
25 | 25 | * |
26 | 26 | * @return string The log entry ID |
27 | 27 | */ |
28 | - abstract public function log( $action_id, $message, DateTime $date = NULL ); |
|
28 | + abstract public function log($action_id, $message, DateTime $date = NULL); |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param string $entry_id |
32 | 32 | * |
33 | 33 | * @return ActionScheduler_LogEntry |
34 | 34 | */ |
35 | - abstract public function get_entry( $entry_id ); |
|
35 | + abstract public function get_entry($entry_id); |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @param string $action_id |
39 | 39 | * |
40 | 40 | * @return ActionScheduler_LogEntry[] |
41 | 41 | */ |
42 | - abstract public function get_logs( $action_id ); |
|
42 | + abstract public function get_logs($action_id); |
|
43 | 43 | |
44 | 44 | |
45 | 45 | /** |
@@ -47,90 +47,90 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public function init() { |
49 | 49 | $this->hook_stored_action(); |
50 | - add_action( 'action_scheduler_canceled_action', array( $this, 'log_canceled_action' ), 10, 1 ); |
|
51 | - add_action( 'action_scheduler_begin_execute', array( $this, 'log_started_action' ), 10, 2 ); |
|
52 | - add_action( 'action_scheduler_after_execute', array( $this, 'log_completed_action' ), 10, 3 ); |
|
53 | - add_action( 'action_scheduler_failed_execution', array( $this, 'log_failed_action' ), 10, 3 ); |
|
54 | - add_action( 'action_scheduler_failed_action', array( $this, 'log_timed_out_action' ), 10, 2 ); |
|
55 | - add_action( 'action_scheduler_unexpected_shutdown', array( $this, 'log_unexpected_shutdown' ), 10, 2 ); |
|
56 | - add_action( 'action_scheduler_reset_action', array( $this, 'log_reset_action' ), 10, 1 ); |
|
57 | - add_action( 'action_scheduler_execution_ignored', array( $this, 'log_ignored_action' ), 10, 2 ); |
|
58 | - add_action( 'action_scheduler_failed_fetch_action', array( $this, 'log_failed_fetch_action' ), 10, 2 ); |
|
59 | - add_action( 'action_scheduler_failed_to_schedule_next_instance', array( $this, 'log_failed_schedule_next_instance' ), 10, 2 ); |
|
60 | - add_action( 'action_scheduler_bulk_cancel_actions', array( $this, 'bulk_log_cancel_actions' ), 10, 1 ); |
|
50 | + add_action('action_scheduler_canceled_action', array($this, 'log_canceled_action'), 10, 1); |
|
51 | + add_action('action_scheduler_begin_execute', array($this, 'log_started_action'), 10, 2); |
|
52 | + add_action('action_scheduler_after_execute', array($this, 'log_completed_action'), 10, 3); |
|
53 | + add_action('action_scheduler_failed_execution', array($this, 'log_failed_action'), 10, 3); |
|
54 | + add_action('action_scheduler_failed_action', array($this, 'log_timed_out_action'), 10, 2); |
|
55 | + add_action('action_scheduler_unexpected_shutdown', array($this, 'log_unexpected_shutdown'), 10, 2); |
|
56 | + add_action('action_scheduler_reset_action', array($this, 'log_reset_action'), 10, 1); |
|
57 | + add_action('action_scheduler_execution_ignored', array($this, 'log_ignored_action'), 10, 2); |
|
58 | + add_action('action_scheduler_failed_fetch_action', array($this, 'log_failed_fetch_action'), 10, 2); |
|
59 | + add_action('action_scheduler_failed_to_schedule_next_instance', array($this, 'log_failed_schedule_next_instance'), 10, 2); |
|
60 | + add_action('action_scheduler_bulk_cancel_actions', array($this, 'bulk_log_cancel_actions'), 10, 1); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | public function hook_stored_action() { |
64 | - add_action( 'action_scheduler_stored_action', array( $this, 'log_stored_action' ) ); |
|
64 | + add_action('action_scheduler_stored_action', array($this, 'log_stored_action')); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | public function unhook_stored_action() { |
68 | - remove_action( 'action_scheduler_stored_action', array( $this, 'log_stored_action' ) ); |
|
68 | + remove_action('action_scheduler_stored_action', array($this, 'log_stored_action')); |
|
69 | 69 | } |
70 | 70 | |
71 | - public function log_stored_action( $action_id ) { |
|
72 | - $this->log( $action_id, __( 'action created', 'action-scheduler' ) ); |
|
71 | + public function log_stored_action($action_id) { |
|
72 | + $this->log($action_id, __('action created', 'action-scheduler')); |
|
73 | 73 | } |
74 | 74 | |
75 | - public function log_canceled_action( $action_id ) { |
|
76 | - $this->log( $action_id, __( 'action canceled', 'action-scheduler' ) ); |
|
75 | + public function log_canceled_action($action_id) { |
|
76 | + $this->log($action_id, __('action canceled', 'action-scheduler')); |
|
77 | 77 | } |
78 | 78 | |
79 | - public function log_started_action( $action_id, $context = '' ) { |
|
80 | - if ( ! empty( $context ) ) { |
|
79 | + public function log_started_action($action_id, $context = '') { |
|
80 | + if (!empty($context)) { |
|
81 | 81 | /* translators: %s: context */ |
82 | - $message = sprintf( __( 'action started via %s', 'action-scheduler' ), $context ); |
|
82 | + $message = sprintf(__('action started via %s', 'action-scheduler'), $context); |
|
83 | 83 | } else { |
84 | - $message = __( 'action started', 'action-scheduler' ); |
|
84 | + $message = __('action started', 'action-scheduler'); |
|
85 | 85 | } |
86 | - $this->log( $action_id, $message ); |
|
86 | + $this->log($action_id, $message); |
|
87 | 87 | } |
88 | 88 | |
89 | - public function log_completed_action( $action_id, $action = NULL, $context = '' ) { |
|
90 | - if ( ! empty( $context ) ) { |
|
89 | + public function log_completed_action($action_id, $action = NULL, $context = '') { |
|
90 | + if (!empty($context)) { |
|
91 | 91 | /* translators: %s: context */ |
92 | - $message = sprintf( __( 'action complete via %s', 'action-scheduler' ), $context ); |
|
92 | + $message = sprintf(__('action complete via %s', 'action-scheduler'), $context); |
|
93 | 93 | } else { |
94 | - $message = __( 'action complete', 'action-scheduler' ); |
|
94 | + $message = __('action complete', 'action-scheduler'); |
|
95 | 95 | } |
96 | - $this->log( $action_id, $message ); |
|
96 | + $this->log($action_id, $message); |
|
97 | 97 | } |
98 | 98 | |
99 | - public function log_failed_action( $action_id, Exception $exception, $context = '' ) { |
|
100 | - if ( ! empty( $context ) ) { |
|
99 | + public function log_failed_action($action_id, Exception $exception, $context = '') { |
|
100 | + if (!empty($context)) { |
|
101 | 101 | /* translators: 1: context 2: exception message */ |
102 | - $message = sprintf( __( 'action failed via %1$s: %2$s', 'action-scheduler' ), $context, $exception->getMessage() ); |
|
102 | + $message = sprintf(__('action failed via %1$s: %2$s', 'action-scheduler'), $context, $exception->getMessage()); |
|
103 | 103 | } else { |
104 | 104 | /* translators: %s: exception message */ |
105 | - $message = sprintf( __( 'action failed: %s', 'action-scheduler' ), $exception->getMessage() ); |
|
105 | + $message = sprintf(__('action failed: %s', 'action-scheduler'), $exception->getMessage()); |
|
106 | 106 | } |
107 | - $this->log( $action_id, $message ); |
|
107 | + $this->log($action_id, $message); |
|
108 | 108 | } |
109 | 109 | |
110 | - public function log_timed_out_action( $action_id, $timeout ) { |
|
110 | + public function log_timed_out_action($action_id, $timeout) { |
|
111 | 111 | /* translators: %s: amount of time */ |
112 | - $this->log( $action_id, sprintf( __( 'action timed out after %s seconds', 'action-scheduler' ), $timeout ) ); |
|
112 | + $this->log($action_id, sprintf(__('action timed out after %s seconds', 'action-scheduler'), $timeout)); |
|
113 | 113 | } |
114 | 114 | |
115 | - public function log_unexpected_shutdown( $action_id, $error ) { |
|
116 | - if ( ! empty( $error ) ) { |
|
115 | + public function log_unexpected_shutdown($action_id, $error) { |
|
116 | + if (!empty($error)) { |
|
117 | 117 | /* translators: 1: error message 2: filename 3: line */ |
118 | - $this->log( $action_id, sprintf( __( 'unexpected shutdown: PHP Fatal error %1$s in %2$s on line %3$s', 'action-scheduler' ), $error['message'], $error['file'], $error['line'] ) ); |
|
118 | + $this->log($action_id, sprintf(__('unexpected shutdown: PHP Fatal error %1$s in %2$s on line %3$s', 'action-scheduler'), $error['message'], $error['file'], $error['line'])); |
|
119 | 119 | } |
120 | 120 | } |
121 | 121 | |
122 | - public function log_reset_action( $action_id ) { |
|
123 | - $this->log( $action_id, __( 'action reset', 'action-scheduler' ) ); |
|
122 | + public function log_reset_action($action_id) { |
|
123 | + $this->log($action_id, __('action reset', 'action-scheduler')); |
|
124 | 124 | } |
125 | 125 | |
126 | - public function log_ignored_action( $action_id, $context = '' ) { |
|
127 | - if ( ! empty( $context ) ) { |
|
126 | + public function log_ignored_action($action_id, $context = '') { |
|
127 | + if (!empty($context)) { |
|
128 | 128 | /* translators: %s: context */ |
129 | - $message = sprintf( __( 'action ignored via %s', 'action-scheduler' ), $context ); |
|
129 | + $message = sprintf(__('action ignored via %s', 'action-scheduler'), $context); |
|
130 | 130 | } else { |
131 | - $message = __( 'action ignored', 'action-scheduler' ); |
|
131 | + $message = __('action ignored', 'action-scheduler'); |
|
132 | 132 | } |
133 | - $this->log( $action_id, $message ); |
|
133 | + $this->log($action_id, $message); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
@@ -139,21 +139,21 @@ discard block |
||
139 | 139 | * |
140 | 140 | * @return ActionScheduler_LogEntry[] |
141 | 141 | */ |
142 | - public function log_failed_fetch_action( $action_id, Exception $exception = NULL ) { |
|
142 | + public function log_failed_fetch_action($action_id, Exception $exception = NULL) { |
|
143 | 143 | |
144 | - if ( ! is_null( $exception ) ) { |
|
144 | + if (!is_null($exception)) { |
|
145 | 145 | /* translators: %s: exception message */ |
146 | - $log_message = sprintf( __( 'There was a failure fetching this action: %s', 'action-scheduler' ), $exception->getMessage() ); |
|
146 | + $log_message = sprintf(__('There was a failure fetching this action: %s', 'action-scheduler'), $exception->getMessage()); |
|
147 | 147 | } else { |
148 | - $log_message = __( 'There was a failure fetching this action', 'action-scheduler' ); |
|
148 | + $log_message = __('There was a failure fetching this action', 'action-scheduler'); |
|
149 | 149 | } |
150 | 150 | |
151 | - $this->log( $action_id, $log_message ); |
|
151 | + $this->log($action_id, $log_message); |
|
152 | 152 | } |
153 | 153 | |
154 | - public function log_failed_schedule_next_instance( $action_id, Exception $exception ) { |
|
154 | + public function log_failed_schedule_next_instance($action_id, Exception $exception) { |
|
155 | 155 | /* translators: %s: exception message */ |
156 | - $this->log( $action_id, sprintf( __( 'There was a failure scheduling the next instance of this action: %s', 'action-scheduler' ), $exception->getMessage() ) ); |
|
156 | + $this->log($action_id, sprintf(__('There was a failure scheduling the next instance of this action: %s', 'action-scheduler'), $exception->getMessage())); |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
@@ -164,13 +164,13 @@ discard block |
||
164 | 164 | * |
165 | 165 | * @param array $action_ids List of action ID. |
166 | 166 | */ |
167 | - public function bulk_log_cancel_actions( $action_ids ) { |
|
168 | - if ( empty( $action_ids ) ) { |
|
167 | + public function bulk_log_cancel_actions($action_ids) { |
|
168 | + if (empty($action_ids)) { |
|
169 | 169 | return; |
170 | 170 | } |
171 | 171 | |
172 | - foreach ( $action_ids as $action_id ) { |
|
173 | - $this->log_canceled_action( $action_id ); |
|
172 | + foreach ($action_ids as $action_id) { |
|
173 | + $this->log_canceled_action($action_id); |
|
174 | 174 | } |
175 | 175 | } |
176 | 176 | } |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | * @param string $lock_type A string to identify different lock types. |
20 | 20 | * @return bool |
21 | 21 | */ |
22 | - public function is_locked( $lock_type ) { |
|
23 | - return ( $this->get_expiration( $lock_type ) >= time() ); |
|
22 | + public function is_locked($lock_type) { |
|
23 | + return ($this->get_expiration($lock_type) >= time()); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * @param string $lock_type A string to identify different lock types. |
30 | 30 | * @return bool |
31 | 31 | */ |
32 | - abstract public function set( $lock_type ); |
|
32 | + abstract public function set($lock_type); |
|
33 | 33 | |
34 | 34 | /** |
35 | 35 | * If a lock is set, return the timestamp it was set to expiry. |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * @param string $lock_type A string to identify different lock types. |
38 | 38 | * @return bool|int False if no lock is set, otherwise the timestamp for when the lock is set to expire. |
39 | 39 | */ |
40 | - abstract public function get_expiration( $lock_type ); |
|
40 | + abstract public function get_expiration($lock_type); |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * Get the amount of time to set for a given lock. 60 seconds by default. |
@@ -45,16 +45,16 @@ discard block |
||
45 | 45 | * @param string $lock_type A string to identify different lock types. |
46 | 46 | * @return int |
47 | 47 | */ |
48 | - protected function get_duration( $lock_type ) { |
|
49 | - return apply_filters( 'action_scheduler_lock_duration', self::$lock_duration, $lock_type ); |
|
48 | + protected function get_duration($lock_type) { |
|
49 | + return apply_filters('action_scheduler_lock_duration', self::$lock_duration, $lock_type); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
53 | 53 | * @return ActionScheduler_Lock |
54 | 54 | */ |
55 | 55 | public static function instance() { |
56 | - if ( empty( self::$locker ) ) { |
|
57 | - $class = apply_filters( 'action_scheduler_lock_class', 'ActionScheduler_OptionLock' ); |
|
56 | + if (empty(self::$locker)) { |
|
57 | + $class = apply_filters('action_scheduler_lock_class', 'ActionScheduler_OptionLock'); |
|
58 | 58 | self::$locker = new $class(); |
59 | 59 | } |
60 | 60 | return self::$locker; |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | private static $factory = NULL; |
14 | 14 | |
15 | 15 | public static function factory() { |
16 | - if ( !isset(self::$factory) ) { |
|
16 | + if (!isset(self::$factory)) { |
|
17 | 17 | self::$factory = new ActionScheduler_ActionFactory(); |
18 | 18 | } |
19 | 19 | return self::$factory; |
@@ -45,10 +45,10 @@ discard block |
||
45 | 45 | * @param string $path |
46 | 46 | * @return string |
47 | 47 | */ |
48 | - public static function plugin_path( $path ) { |
|
48 | + public static function plugin_path($path) { |
|
49 | 49 | $base = dirname(self::$plugin_file); |
50 | - if ( $path ) { |
|
51 | - return trailingslashit($base).$path; |
|
50 | + if ($path) { |
|
51 | + return trailingslashit($base) . $path; |
|
52 | 52 | } else { |
53 | 53 | return untrailingslashit($base); |
54 | 54 | } |
@@ -60,38 +60,38 @@ discard block |
||
60 | 60 | * @param string $path |
61 | 61 | * @return string |
62 | 62 | */ |
63 | - public static function plugin_url( $path ) { |
|
63 | + public static function plugin_url($path) { |
|
64 | 64 | return plugins_url($path, self::$plugin_file); |
65 | 65 | } |
66 | 66 | |
67 | - public static function autoload( $class ) { |
|
67 | + public static function autoload($class) { |
|
68 | 68 | $d = DIRECTORY_SEPARATOR; |
69 | - $classes_dir = self::plugin_path( 'classes' . $d ); |
|
70 | - $separator = strrpos( $class, '\\' ); |
|
71 | - if ( false !== $separator ) { |
|
72 | - if ( 0 !== strpos( $class, 'Action_Scheduler' ) ) { |
|
69 | + $classes_dir = self::plugin_path('classes' . $d); |
|
70 | + $separator = strrpos($class, '\\'); |
|
71 | + if (false !== $separator) { |
|
72 | + if (0 !== strpos($class, 'Action_Scheduler')) { |
|
73 | 73 | return; |
74 | 74 | } |
75 | - $class = substr( $class, $separator + 1 ); |
|
75 | + $class = substr($class, $separator + 1); |
|
76 | 76 | } |
77 | 77 | |
78 | - if ( 'Deprecated' === substr( $class, -10 ) ) { |
|
79 | - $dir = self::plugin_path( 'deprecated' . $d ); |
|
80 | - } elseif ( self::is_class_abstract( $class ) ) { |
|
78 | + if ('Deprecated' === substr($class, -10)) { |
|
79 | + $dir = self::plugin_path('deprecated' . $d); |
|
80 | + } elseif (self::is_class_abstract($class)) { |
|
81 | 81 | $dir = $classes_dir . 'abstracts' . $d; |
82 | - } elseif ( self::is_class_migration( $class ) ) { |
|
82 | + } elseif (self::is_class_migration($class)) { |
|
83 | 83 | $dir = $classes_dir . 'migration' . $d; |
84 | - } elseif ( 'Schedule' === substr( $class, -8 ) ) { |
|
84 | + } elseif ('Schedule' === substr($class, -8)) { |
|
85 | 85 | $dir = $classes_dir . 'schedules' . $d; |
86 | - } elseif ( 'Action' === substr( $class, -6 ) ) { |
|
86 | + } elseif ('Action' === substr($class, -6)) { |
|
87 | 87 | $dir = $classes_dir . 'actions' . $d; |
88 | - } elseif ( 'Schema' === substr( $class, -6 ) ) { |
|
88 | + } elseif ('Schema' === substr($class, -6)) { |
|
89 | 89 | $dir = $classes_dir . 'schema' . $d; |
90 | - } elseif ( strpos( $class, 'ActionScheduler' ) === 0 ) { |
|
91 | - $segments = explode( '_', $class ); |
|
92 | - $type = isset( $segments[ 1 ] ) ? $segments[ 1 ] : ''; |
|
90 | + } elseif (strpos($class, 'ActionScheduler') === 0) { |
|
91 | + $segments = explode('_', $class); |
|
92 | + $type = isset($segments[1]) ? $segments[1] : ''; |
|
93 | 93 | |
94 | - switch ( $type ) { |
|
94 | + switch ($type) { |
|
95 | 95 | case 'WPCLI': |
96 | 96 | $dir = $classes_dir . 'WP_CLI' . $d; |
97 | 97 | break; |
@@ -106,18 +106,18 @@ discard block |
||
106 | 106 | $dir = $classes_dir; |
107 | 107 | break; |
108 | 108 | } |
109 | - } elseif ( self::is_class_cli( $class ) ) { |
|
109 | + } elseif (self::is_class_cli($class)) { |
|
110 | 110 | $dir = $classes_dir . 'WP_CLI' . $d; |
111 | - } elseif ( strpos( $class, 'CronExpression' ) === 0 ) { |
|
112 | - $dir = self::plugin_path( 'lib' . $d . 'cron-expression' . $d ); |
|
113 | - } elseif ( strpos( $class, 'WP_Async_Request' ) === 0 ) { |
|
114 | - $dir = self::plugin_path( 'lib' . $d ); |
|
111 | + } elseif (strpos($class, 'CronExpression') === 0) { |
|
112 | + $dir = self::plugin_path('lib' . $d . 'cron-expression' . $d); |
|
113 | + } elseif (strpos($class, 'WP_Async_Request') === 0) { |
|
114 | + $dir = self::plugin_path('lib' . $d); |
|
115 | 115 | } else { |
116 | 116 | return; |
117 | 117 | } |
118 | 118 | |
119 | - if ( file_exists( "{$dir}{$class}.php" ) ) { |
|
120 | - include( "{$dir}{$class}.php" ); |
|
119 | + if (file_exists("{$dir}{$class}.php")) { |
|
120 | + include("{$dir}{$class}.php"); |
|
121 | 121 | return; |
122 | 122 | } |
123 | 123 | } |
@@ -128,16 +128,16 @@ discard block |
||
128 | 128 | * @static |
129 | 129 | * @param string $plugin_file |
130 | 130 | */ |
131 | - public static function init( $plugin_file ) { |
|
131 | + public static function init($plugin_file) { |
|
132 | 132 | self::$plugin_file = $plugin_file; |
133 | - spl_autoload_register( array( __CLASS__, 'autoload' ) ); |
|
133 | + spl_autoload_register(array(__CLASS__, 'autoload')); |
|
134 | 134 | |
135 | 135 | /** |
136 | 136 | * Fires in the early stages of Action Scheduler init hook. |
137 | 137 | */ |
138 | - do_action( 'action_scheduler_pre_init' ); |
|
138 | + do_action('action_scheduler_pre_init'); |
|
139 | 139 | |
140 | - require_once( self::plugin_path( 'functions.php' ) ); |
|
140 | + require_once(self::plugin_path('functions.php')); |
|
141 | 141 | ActionScheduler_DataController::init(); |
142 | 142 | |
143 | 143 | $store = self::store(); |
@@ -146,11 +146,11 @@ discard block |
||
146 | 146 | $admin_view = self::admin_view(); |
147 | 147 | |
148 | 148 | // Ensure initialization on plugin activation. |
149 | - if ( ! did_action( 'init' ) ) { |
|
150 | - add_action( 'init', array( $admin_view, 'init' ), 0, 0 ); // run before $store::init() |
|
151 | - add_action( 'init', array( $store, 'init' ), 1, 0 ); |
|
152 | - add_action( 'init', array( $logger, 'init' ), 1, 0 ); |
|
153 | - add_action( 'init', array( $runner, 'init' ), 1, 0 ); |
|
149 | + if (!did_action('init')) { |
|
150 | + add_action('init', array($admin_view, 'init'), 0, 0); // run before $store::init() |
|
151 | + add_action('init', array($store, 'init'), 1, 0); |
|
152 | + add_action('init', array($logger, 'init'), 1, 0); |
|
153 | + add_action('init', array($runner, 'init'), 1, 0); |
|
154 | 154 | } else { |
155 | 155 | $admin_view->init(); |
156 | 156 | $store->init(); |
@@ -158,13 +158,13 @@ discard block |
||
158 | 158 | $runner->init(); |
159 | 159 | } |
160 | 160 | |
161 | - if ( apply_filters( 'action_scheduler_load_deprecated_functions', true ) ) { |
|
162 | - require_once( self::plugin_path( 'deprecated/functions.php' ) ); |
|
161 | + if (apply_filters('action_scheduler_load_deprecated_functions', true)) { |
|
162 | + require_once(self::plugin_path('deprecated/functions.php')); |
|
163 | 163 | } |
164 | 164 | |
165 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
166 | - WP_CLI::add_command( 'action-scheduler', 'ActionScheduler_WPCLI_Scheduler_command' ); |
|
167 | - if ( ! ActionScheduler_DataController::is_migration_complete() && Controller::instance()->allow_migration() ) { |
|
165 | + if (defined('WP_CLI') && WP_CLI) { |
|
166 | + WP_CLI::add_command('action-scheduler', 'ActionScheduler_WPCLI_Scheduler_command'); |
|
167 | + if (!ActionScheduler_DataController::is_migration_complete() && Controller::instance()->allow_migration()) { |
|
168 | 168 | $command = new Migration_Command(); |
169 | 169 | $command->register(); |
170 | 170 | } |
@@ -173,11 +173,11 @@ discard block |
||
173 | 173 | /** |
174 | 174 | * Handle WP comment cleanup after migration. |
175 | 175 | */ |
176 | - if ( is_a( $logger, 'ActionScheduler_DBLogger' ) && ActionScheduler_DataController::is_migration_complete() && ActionScheduler_WPCommentCleaner::has_logs() ) { |
|
176 | + if (is_a($logger, 'ActionScheduler_DBLogger') && ActionScheduler_DataController::is_migration_complete() && ActionScheduler_WPCommentCleaner::has_logs()) { |
|
177 | 177 | ActionScheduler_WPCommentCleaner::init(); |
178 | 178 | } |
179 | 179 | |
180 | - add_action( 'action_scheduler/migration_complete', 'ActionScheduler_WPCommentCleaner::maybe_schedule_cleanup' ); |
|
180 | + add_action('action_scheduler/migration_complete', 'ActionScheduler_WPCommentCleaner::maybe_schedule_cleanup'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | * |
190 | 190 | * @return bool |
191 | 191 | */ |
192 | - protected static function is_class_abstract( $class ) { |
|
192 | + protected static function is_class_abstract($class) { |
|
193 | 193 | static $abstracts = array( |
194 | 194 | 'ActionScheduler' => true, |
195 | 195 | 'ActionScheduler_Abstract_ListTable' => true, |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | 'ActionScheduler_TimezoneHelper' => true, |
204 | 204 | ); |
205 | 205 | |
206 | - return isset( $abstracts[ $class ] ) && $abstracts[ $class ]; |
|
206 | + return isset($abstracts[$class]) && $abstracts[$class]; |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | /** |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | * |
216 | 216 | * @return bool |
217 | 217 | */ |
218 | - protected static function is_class_migration( $class ) { |
|
218 | + protected static function is_class_migration($class) { |
|
219 | 219 | static $migration_segments = array( |
220 | 220 | 'ActionMigrator' => true, |
221 | 221 | 'BatchFetcher' => true, |
@@ -228,10 +228,10 @@ discard block |
||
228 | 228 | 'Scheduler' => true, |
229 | 229 | ); |
230 | 230 | |
231 | - $segments = explode( '_', $class ); |
|
232 | - $segment = isset( $segments[ 1 ] ) ? $segments[ 1 ] : $class; |
|
231 | + $segments = explode('_', $class); |
|
232 | + $segment = isset($segments[1]) ? $segments[1] : $class; |
|
233 | 233 | |
234 | - return isset( $migration_segments[ $segment ] ) && $migration_segments[ $segment ]; |
|
234 | + return isset($migration_segments[$segment]) && $migration_segments[$segment]; |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | /** |
@@ -243,17 +243,17 @@ discard block |
||
243 | 243 | * |
244 | 244 | * @return bool |
245 | 245 | */ |
246 | - protected static function is_class_cli( $class ) { |
|
246 | + protected static function is_class_cli($class) { |
|
247 | 247 | static $cli_segments = array( |
248 | 248 | 'QueueRunner' => true, |
249 | 249 | 'Command' => true, |
250 | 250 | 'ProgressBar' => true, |
251 | 251 | ); |
252 | 252 | |
253 | - $segments = explode( '_', $class ); |
|
254 | - $segment = isset( $segments[ 1 ] ) ? $segments[ 1 ] : $class; |
|
253 | + $segments = explode('_', $class); |
|
254 | + $segment = isset($segments[1]) ? $segments[1] : $class; |
|
255 | 255 | |
256 | - return isset( $cli_segments[ $segment ] ) && $cli_segments[ $segment ]; |
|
256 | + return isset($cli_segments[$segment]) && $cli_segments[$segment]; |
|
257 | 257 | } |
258 | 258 | |
259 | 259 | final public function __clone() { |
@@ -268,8 +268,8 @@ discard block |
||
268 | 268 | |
269 | 269 | /** Deprecated **/ |
270 | 270 | |
271 | - public static function get_datetime_object( $when = null, $timezone = 'UTC' ) { |
|
272 | - _deprecated_function( __METHOD__, '2.0', 'wcs_add_months()' ); |
|
273 | - return as_get_datetime_object( $when, $timezone ); |
|
271 | + public static function get_datetime_object($when = null, $timezone = 'UTC') { |
|
272 | + _deprecated_function(__METHOD__, '2.0', 'wcs_add_months()'); |
|
273 | + return as_get_datetime_object($when, $timezone); |
|
274 | 274 | } |
275 | 275 | } |
@@ -29,20 +29,20 @@ discard block |
||
29 | 29 | * |
30 | 30 | * @return void |
31 | 31 | */ |
32 | - public function register_tables( $force_update = false ) { |
|
32 | + public function register_tables($force_update = false) { |
|
33 | 33 | global $wpdb; |
34 | 34 | |
35 | 35 | // make WP aware of our tables |
36 | - foreach ( $this->tables as $table ) { |
|
36 | + foreach ($this->tables as $table) { |
|
37 | 37 | $wpdb->tables[] = $table; |
38 | - $name = $this->get_full_table_name( $table ); |
|
38 | + $name = $this->get_full_table_name($table); |
|
39 | 39 | $wpdb->$table = $name; |
40 | 40 | } |
41 | 41 | |
42 | 42 | // create the tables |
43 | - if ( $this->schema_update_required() || $force_update ) { |
|
44 | - foreach ( $this->tables as $table ) { |
|
45 | - $this->update_table( $table ); |
|
43 | + if ($this->schema_update_required() || $force_update) { |
|
44 | + foreach ($this->tables as $table) { |
|
45 | + $this->update_table($table); |
|
46 | 46 | } |
47 | 47 | $this->mark_schema_update_complete(); |
48 | 48 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | * |
54 | 54 | * @return string The CREATE TABLE statement, suitable for passing to dbDelta |
55 | 55 | */ |
56 | - abstract protected function get_table_definition( $table ); |
|
56 | + abstract protected function get_table_definition($table); |
|
57 | 57 | |
58 | 58 | /** |
59 | 59 | * Determine if the database schema is out of date |
@@ -64,14 +64,14 @@ discard block |
||
64 | 64 | */ |
65 | 65 | private function schema_update_required() { |
66 | 66 | $option_name = 'schema-' . static::class; |
67 | - $version_found_in_db = get_option( $option_name, 0 ); |
|
67 | + $version_found_in_db = get_option($option_name, 0); |
|
68 | 68 | |
69 | 69 | // Check for schema option stored by the Action Scheduler Custom Tables plugin in case site has migrated from that plugin with an older schema |
70 | - if ( 0 === $version_found_in_db ) { |
|
70 | + if (0 === $version_found_in_db) { |
|
71 | 71 | |
72 | 72 | $plugin_option_name = 'schema-'; |
73 | 73 | |
74 | - switch ( static::class ) { |
|
74 | + switch (static::class) { |
|
75 | 75 | case 'ActionScheduler_StoreSchema' : |
76 | 76 | $plugin_option_name .= 'Action_Scheduler\Custom_Tables\DB_Store_Table_Maker'; |
77 | 77 | break; |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | break; |
81 | 81 | } |
82 | 82 | |
83 | - $version_found_in_db = get_option( $plugin_option_name, 0 ); |
|
83 | + $version_found_in_db = get_option($plugin_option_name, 0); |
|
84 | 84 | |
85 | - delete_option( $plugin_option_name ); |
|
85 | + delete_option($plugin_option_name); |
|
86 | 86 | } |
87 | 87 | |
88 | - return version_compare( $version_found_in_db, $this->schema_version, '<' ); |
|
88 | + return version_compare($version_found_in_db, $this->schema_version, '<'); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | // work around race conditions and ensure that our option updates |
101 | 101 | $value_to_save = (string) $this->schema_version . '.0.' . time(); |
102 | 102 | |
103 | - update_option( $option_name, $value_to_save ); |
|
103 | + update_option($option_name, $value_to_save); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | /** |
@@ -110,14 +110,14 @@ discard block |
||
110 | 110 | * |
111 | 111 | * @return void |
112 | 112 | */ |
113 | - private function update_table( $table ) { |
|
114 | - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
115 | - $definition = $this->get_table_definition( $table ); |
|
116 | - if ( $definition ) { |
|
117 | - $updated = dbDelta( $definition ); |
|
118 | - foreach ( $updated as $updated_table => $update_description ) { |
|
119 | - if ( strpos( $update_description, 'Created table' ) === 0 ) { |
|
120 | - do_action( 'action_scheduler/created_table', $updated_table, $table ); |
|
113 | + private function update_table($table) { |
|
114 | + require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); |
|
115 | + $definition = $this->get_table_definition($table); |
|
116 | + if ($definition) { |
|
117 | + $updated = dbDelta($definition); |
|
118 | + foreach ($updated as $updated_table => $update_description) { |
|
119 | + if (strpos($update_description, 'Created table') === 0) { |
|
120 | + do_action('action_scheduler/created_table', $updated_table, $table); |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 | } |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | * @return string The full name of the table, including the |
130 | 130 | * table prefix for the current blog |
131 | 131 | */ |
132 | - protected function get_full_table_name( $table ) { |
|
133 | - return $GLOBALS[ 'wpdb' ]->prefix . $table; |
|
132 | + protected function get_full_table_name($table) { |
|
133 | + return $GLOBALS['wpdb']->prefix . $table; |
|
134 | 134 | } |
135 | 135 | } |
136 | 136 | \ No newline at end of file |
@@ -16,24 +16,24 @@ discard block |
||
16 | 16 | * @param string $value A (PHP ini) byte value, either shorthand or ordinary. |
17 | 17 | * @return int An integer byte value. |
18 | 18 | */ |
19 | - public static function convert_hr_to_bytes( $value ) { |
|
20 | - if ( function_exists( 'wp_convert_hr_to_bytes' ) ) { |
|
21 | - return wp_convert_hr_to_bytes( $value ); |
|
19 | + public static function convert_hr_to_bytes($value) { |
|
20 | + if (function_exists('wp_convert_hr_to_bytes')) { |
|
21 | + return wp_convert_hr_to_bytes($value); |
|
22 | 22 | } |
23 | 23 | |
24 | - $value = strtolower( trim( $value ) ); |
|
24 | + $value = strtolower(trim($value)); |
|
25 | 25 | $bytes = (int) $value; |
26 | 26 | |
27 | - if ( false !== strpos( $value, 'g' ) ) { |
|
27 | + if (false !== strpos($value, 'g')) { |
|
28 | 28 | $bytes *= GB_IN_BYTES; |
29 | - } elseif ( false !== strpos( $value, 'm' ) ) { |
|
29 | + } elseif (false !== strpos($value, 'm')) { |
|
30 | 30 | $bytes *= MB_IN_BYTES; |
31 | - } elseif ( false !== strpos( $value, 'k' ) ) { |
|
31 | + } elseif (false !== strpos($value, 'k')) { |
|
32 | 32 | $bytes *= KB_IN_BYTES; |
33 | 33 | } |
34 | 34 | |
35 | 35 | // Deal with large (float) values which run into the maximum integer size. |
36 | - return min( $bytes, PHP_INT_MAX ); |
|
36 | + return min($bytes, PHP_INT_MAX); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -46,30 +46,30 @@ discard block |
||
46 | 46 | * @return bool|int|string The limit that was set or false on failure. |
47 | 47 | */ |
48 | 48 | public static function raise_memory_limit() { |
49 | - if ( function_exists( 'wp_raise_memory_limit' ) ) { |
|
50 | - return wp_raise_memory_limit( 'admin' ); |
|
49 | + if (function_exists('wp_raise_memory_limit')) { |
|
50 | + return wp_raise_memory_limit('admin'); |
|
51 | 51 | } |
52 | 52 | |
53 | - $current_limit = @ini_get( 'memory_limit' ); |
|
54 | - $current_limit_int = self::convert_hr_to_bytes( $current_limit ); |
|
53 | + $current_limit = @ini_get('memory_limit'); |
|
54 | + $current_limit_int = self::convert_hr_to_bytes($current_limit); |
|
55 | 55 | |
56 | 56 | if ( -1 === $current_limit_int ) { |
57 | 57 | return false; |
58 | 58 | } |
59 | 59 | |
60 | 60 | $wp_max_limit = WP_MAX_MEMORY_LIMIT; |
61 | - $wp_max_limit_int = self::convert_hr_to_bytes( $wp_max_limit ); |
|
62 | - $filtered_limit = apply_filters( 'admin_memory_limit', $wp_max_limit ); |
|
63 | - $filtered_limit_int = self::convert_hr_to_bytes( $filtered_limit ); |
|
61 | + $wp_max_limit_int = self::convert_hr_to_bytes($wp_max_limit); |
|
62 | + $filtered_limit = apply_filters('admin_memory_limit', $wp_max_limit); |
|
63 | + $filtered_limit_int = self::convert_hr_to_bytes($filtered_limit); |
|
64 | 64 | |
65 | - if ( -1 === $filtered_limit_int || ( $filtered_limit_int > $wp_max_limit_int && $filtered_limit_int > $current_limit_int ) ) { |
|
66 | - if ( false !== @ini_set( 'memory_limit', $filtered_limit ) ) { |
|
65 | + if ( -1 === $filtered_limit_int || ($filtered_limit_int > $wp_max_limit_int && $filtered_limit_int > $current_limit_int) ) { |
|
66 | + if (false !== @ini_set('memory_limit', $filtered_limit)) { |
|
67 | 67 | return $filtered_limit; |
68 | 68 | } else { |
69 | 69 | return false; |
70 | 70 | } |
71 | 71 | } elseif ( -1 === $wp_max_limit_int || $wp_max_limit_int > $current_limit_int ) { |
72 | - if ( false !== @ini_set( 'memory_limit', $wp_max_limit ) ) { |
|
72 | + if (false !== @ini_set('memory_limit', $wp_max_limit)) { |
|
73 | 73 | return $wp_max_limit; |
74 | 74 | } else { |
75 | 75 | return false; |
@@ -85,15 +85,15 @@ discard block |
||
85 | 85 | * |
86 | 86 | * @param int The time limit in seconds. |
87 | 87 | */ |
88 | - public static function raise_time_limit( $limit = 0 ) { |
|
89 | - if ( $limit < ini_get( 'max_execution_time' ) ) { |
|
88 | + public static function raise_time_limit($limit = 0) { |
|
89 | + if ($limit < ini_get('max_execution_time')) { |
|
90 | 90 | return; |
91 | 91 | } |
92 | 92 | |
93 | - if ( function_exists( 'wc_set_time_limit' ) ) { |
|
94 | - wc_set_time_limit( $limit ); |
|
95 | - } elseif ( function_exists( 'set_time_limit' ) && false === strpos( ini_get( 'disable_functions' ), 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
96 | - @set_time_limit( $limit ); |
|
93 | + if (function_exists('wc_set_time_limit')) { |
|
94 | + wc_set_time_limit($limit); |
|
95 | + } elseif (function_exists('set_time_limit') && false === strpos(ini_get('disable_functions'), 'set_time_limit') && !ini_get('safe_mode')) { |
|
96 | + @set_time_limit($limit); |
|
97 | 97 | } |
98 | 98 | } |
99 | 99 | } |