| Server IP : 145.239.37.162 / Your IP : 216.73.217.80 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www1/wp-content/plugins/tumblr-importer/ |
Upload File : |
<?php
/**
* WP_Importer_Cron base class
*
* Adds cron based importing functionality to WP_Importer
*/
if ( !class_exists( 'WP_Importer_Cron' ) ) :
require_once ABSPATH . 'wp-admin/includes/import.php';
if ( !class_exists( 'WP_Importer' ) ) {
$class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
if ( file_exists( $class_wp_importer ) ) {
require_once $class_wp_importer;
} else {
return;
}
}
class WP_Importer_Cron extends WP_Importer {
function __construct() {
// start the clock
$this->_importer_started = time();
$this->_max_execution_time = 30; // default to 30 seconds of time on the clock
parent::__construct();
// add the importer schedule
add_filter( 'cron_schedules', array( $this, 'importer_schedule' ) );
// add the importer hook
add_action( 'wp_cron_importer_hook', array( $this, 'importer_callback' ) );
//load the variables
$options = get_option( get_class($this) );
if ( is_array($options) )
foreach ( $options as $key => $value )
$this->$key = $value;
}
// Check to see if you have time remaining on the clock
function have_time() {
if ( time() - $this->_importer_started > $this->_max_execution_time ) return false;
return true;
}
// add the once every three minute schedule
function importer_schedule( $schedules ) {
$schedules['everyminute'] = array( 'interval' => 60, 'display' => __('Every Minute') );
return $schedules;
}
// schedule an importer job
function schedule_import_job( $function_name, $args=array() ) {
$this->callback = $function_name;
wp_schedule_event(time(), 'everyminute', 'wp_cron_importer_hook' , $args);
}
// internal callback that checks for a finished import and clears old jobs out
function importer_callback( $args=array() ) {
$args = (array)$args;
if ( isset($this->callback) ) {
$complete = call_user_func_array( array( $this, $this->callback ), $args );
} else {
// no callback, force the cron job to end
$complete = true;
}
if ( $complete ) {
// importer is finished, stop the scheduler
wp_clear_scheduled_hook( 'wp_cron_importer_hook', $args);
}
}
// function to let the class save its own variables
function save_vars() {
$vars = get_object_vars($this);
foreach($vars as $var=>$val) {
if ($var[0] == "_") unset ($vars[$var]);
}
update_option( get_class($this), $vars );
return !empty($vars);
}
}
endif; // class_exists