phpbb\cron\task\text_reparser\reparser::is_runnable PHP Méthode

is_runnable() public méthode

public is_runnable ( )
    public function is_runnable()
    {
        if ($this->resume_data === null) {
            $this->reparser_manager->get_resume_data($this->reparser_name);
        }
        if (!isset($this->resume_data['range-max']) || $this->resume_data['range-max'] >= $this->resume_data['range-min']) {
            return true;
        }
        return false;
    }