;UP?>U@p <U<>U p[M=UpPs0<U+>U(a>UPK>U@TU/<U> @ @nmmx@x@/** * Gets the entire page content, including TB Header, TB Body Layout, Post Content and TB Footer. * * Parameter $post must be given as a variable, since it is passed by reference. * If $post is not given, It then uses global $post if available. * * @since 4.11.0 * @since 4.14.5 Return empty string on failure instead of null. * * @param WP_Post|int $post Optional. WP_Post instance or Post ID. Default null. * * @return string Empty string on failure. */;UPx?P?U`y|?U`M0=UpN@UPps0<U+02@UPpT=UTU<U@*<U@l?UP>/<UP>}c0;U`=n<UPA@<UP<UP`.0;U@;<Up<<Up`4<U``.0;U=<U<<U`4<=U`>/<Up>`@8ppPS@`hU0;U`=n<UPA@<UP<UP`.0;U@;<Up<<Up`4<U``.0;U=<U<<U`4<=U`>/<Up>`@X@`hU;UP?;U`?P?Up|?UPM0=UNe@U@U`s0<U`+@UpTU<U@*<U@l?Up>/<U0> hU`hU;UP ?p?U` p?Up$ 0;U` =.@UPP u.@Up` un<Up A@<U 0<U` +@V?U` <U@ *@V?UP <=U >/<U@ >@p@/** * Sanitize dynamic content on save. * * Check on save post if the user has the unfiltered_html capability, * if they do, we can bail, because they can save whatever they want, * if they don't, we need to strip the enable_html flag from the dynamic content item, * and then re-encode it, and put the new value back in the post content. * * @since 4.23.2 * * @param array $data An array of slashed post data. * * @return array $data Modified post data. */i Builder ist d party code of exceptions when deleting a completed action older than the retention period * * This hook provides a way for 3rd party code to log or otherwise handle exceptions relating to their * actions. * * @param int $action_id The scheduled actions ID in the data store * @param Exception $e The exception thrown when attempting to delete the action from the data store * @param int $lifespan The retention period, in seconds, for old actions * @param int $count_of_actions_to_delete The number of old actions being deleted in this batch * @since 2.0.0 * */ do_action( "action_scheduler_failed_{$context}_action_deletion", $action_id, $e, $lifespan, count( $actions_to_delete ) ); } } return $deleted_actions; } /** * Unclaim pending actions that have not been run within a given time limit. * * When called by ActionScheduler_Abstract_QueueRunner::run_cleanup(), the time limit passed * as a parameter is 10x the time limit used for queue processing. * * @param int $time_limit The number of seconds to allow a queue to run before unclaiming its pending actions. Default 300 (5 minutes). */ public function reset_timeouts( $time_limit = 300 ) { $timeout = apply_filters( 'action_scheduler_timeout_period', $time_limit ); if ( $timeout < 0 ) { return; } $cutoff = as_get_datetime_object($timeout.' seconds ago'); $actions_to_reset = $this->store->query_actions( array( 'status' => ActionScheduler_Store::STATUS_PENDING, 'modified' => $cutoff, 'modified_compare' => '<=', 'claimed' => true, 'per_page' => $this->get_batch_size(), 'orderby' => 'none', ) ); foreach ( $actions_to_reset as $action_id ) { $this->store->unclaim_action( $action_id ); do_action( 'action_scheduler_reset_action', $action_id ); } } /** * Mark actions that have been running for more than a given time limit as failed, based on * the assumption some uncatachable and unloggable fatal error occurred during processing. * * When called by ActionScheduler_Abstract_QueueRunner::run_cleanup(), the time limit passed * as a parameter is 10x the time limit used for queue processing. * * @param int $time_limit The number of seconds to allow an action to run before it is considered to have failed. Default 300 (5 minutes). */ public function mark_failures( $time_limit = 300 ) { $timeout = apply_filters( 'action_scheduler_failure_period', $time_limit ); if ( $timeout < 0 ) { return; } $cutoff = as_get_datetime_object($timeout.' seconds ago'); $actions_to_reset = $this->store->query_actions( array( 'status' => ActionScheduler_Store::STATUS_RUNNING, 'modified' => $cutoff, 'modified_compare' => '<=', 'per_page' => $this->get_batch_size(), 'orderby' => 'none', ) ); foreach ( $actions_to_reset as $action_id ) { $this->store->mark_failure( $action_id ); do_action( 'action_scheduler_failed_action', $action_id, $timeout ); } } /** * Do all of the cleaning actions. * * @param int $time_limit The number of seconds to use as the timeout and failure period. Default 300 (5 minutes). * @author Jeremy Pry */ public function clean( $time_limit = 300 ) { $this->delete_old_actions(); $this->reset_timeouts( $time_limit ); $this->mark_failures( $time_limit ); } /** * Get the batch size for cleaning the queue. * * @author Jeremy Pry * @return int */ protected function get_batch_size() { /** * Filter the batch size when cleaning the queue. * * @param int $batch_size The number of actions to clean in one batch. */ return absint( apply_filters( 'action_scheduler_cleanup_batch_size', $this->batch_size ) ); } }