Tribe__Events__Aggregator__Records::$status->pending ]; $record = $records->get_by_import_id( $import_id, $args ); $this->current_record = $record; return $record instanceof Tribe__Events__Aggregator__Record__Abstract; } /** * Whether the batch hash is the expected one or not. * * @since 4.6.15 * * @param string $batch_hash * * @return bool */ public function is_expected_batch_hash( $batch_hash, WP_REST_Request $request ) { if ( ! $this->current_record instanceof Tribe__Events__Aggregator__Record__Abstract ) { return false; } // If the import is going to be marked as failure ignore the next batch validation. if ( 'failed' === $request->get_param( 'status' ) ) { return true; } return $this->current_record->meta['next_batch_hash'] === $batch_hash; } /** * Whether the interval is an acceptable one or not. * * @since 4.6.15 * * @param int $interval * * @return bool */ public function is_valid_interval( $interval ) { return is_numeric( $interval ); } /** * Whether the specified percentage is legit or not. * * @since 4.6.15 * * @param int $percentage * * @return bool */ public function is_percentage( $percentage ) { return is_numeric( $percentage ) && (int) $percentage >= 0 && (int) $percentage <= 100; } }