| Server IP : 172.67.134.116 / Your IP : 216.73.216.141 Web Server : Apache System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : nobi37te ( 1003) PHP Version : 8.2.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/nobi37te/public_html/wp-content/plugins/cleantalk-spam-protect/lib/Cleantalk/ApbctWP/ |
Upload File : |
<?php
namespace Cleantalk\ApbctWP;
class Cron extends \Cleantalk\Common\Cron
{
/**
* Get fresh instance of Cron
*
* @return Cron
*/
public static function getInstance()
{
return new self();
}
/**
* Get timestamp last Cron started.
*
* @return int timestamp
*/
public function getCronLastStart()
{
return get_option('cleantalk_cron_last_start');
}
/**
* Save timestamp of running Cron.
*
* @return bool
*/
public function setCronLastStart()
{
return update_option('cleantalk_cron_last_start', time());
}
/**
* Save option with tasks
*
* @param array $tasks
*
* @return bool
*/
public function saveTasks($tasks)
{
return update_option($this->cron_option_name, $tasks);
}
/**
* Getting all tasks
*
* @return array
*/
public function getTasks()
{
global $wpdb;
$result = $wpdb->get_var(
$wpdb->prepare(
"SELECT option_value FROM {$wpdb->options} WHERE option_name = %s AND " . rand(1, 100000) . " > 0",
$this->cron_option_name
)
);
if (!$result) {
return array();
}
// First unserialize the outer string
$unserialized = unserialize($result);
// If the unserialized data is still a string, it needs to be unserialized again
if (is_string($unserialized)) {
$unserialized = unserialize($unserialized);
}
return is_array($unserialized) ? $unserialized : array();
}
}