HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/cpanel/ea-php54/root/usr/share/pear/RVSeagullMod/lib/SGL/Emailer/Queue/Container.php
<?php

/**
 * Base class for all containers.
 *
 * @package SGL
 * @author Dmitri Lakachauskis <lakiboy83@gmail.com>
 */
abstract class SGL_Emailer_Queue_Container
{
    /**
     * Stores current result set pointer.
     *
     * @var DB_Result
     */
    protected $_preloadResult = null;

    /**
     * Returns container.
     *
     * @param string $containerName
     *
     * @return SGL_Emailer_Queue_Container
     */
    public function factory($containerName)
    {
        $containerName = ucfirst(strtolower($containerName));
        $fileName = dirname(__FILE__) . "/Container/{$containerName}.php";
        if (file_exists($fileName)) {
            include_once $fileName;
        } else {
            return SGL::raiseError('Container not found', SGL_ERROR_NOFILE);
        }
        $className = "SGL_Emailer_Queue_Container_$containerName";
        if (class_exists($className)) {
            return new $className;
        } else {
            return SGL::raiseError('Class not found', SGL_ERROR_NOCLASS);
        }
    }

    /**
     * Puts email to queue.
     *
     * @param string $headers
     * @param string $recipient
     * @param string $body
     * @param string $subject
     * @param string $dateToSend
     * @param integer $groupId
     * @param integer $batchId
     * @param integer $userId
     *
     * @return void
     */
    public function push($headers, $recipient, $body, $subject, $dateToSend,
        $groupId, $batchId, $userId)
    {
        return SGL::raiseError('Not implemented', SGL_ERROR_NOMETHOD);
    }

    /**
     * Removes email from queue.
     *
     * @param integer $emailId
     *
     * @return void
     */
    public function remove($emailId)
    {
        return SGL::raiseError('Not implemented', SGL_ERROR_NOMETHOD);
    }

    /**
     * Preloads emails from queue.
     *
     * @param integer $limit
     * @param integer $attempts
     * @param string $deliveryDate
     * @param array $aParams
     *
     * @return void
     */
    public function preload($limit = null, $attempts = null,
        $deliveryDate = null, $aParams = null)
    {
        return SGL::raiseError('Not implemented', SGL_ERROR_NOMETHOD);
    }

    /**
     * Marks email as sent.
     *
     * @param integer $id
     *
     * @return void
     */
    public function markAsSent($id)
    {
        return SGL::raiseError('Not implemented', SGL_ERROR_NOMETHOD);
    }

    /**
     * Increses attempt count.
     *
     * @param integer $id
     *
     * @return void
     */
    public function increaseAttemptCount($id)
    {
        return SGL::raiseError('Not implemented', SGL_ERROR_NOMETHOD);
    }

    /**
     * Retuns email identification string.
     *
     * @param object $email
     *
     * @return void
     */
    public function identifyEmail($email)
    {
        return SGL::raiseError('Not implemented', SGL_ERROR_NOMETHOD);
    }

    /**
     * Checks if queue is preloaded.
     *
     * @return boolean
     */
    public function isPreloaded()
    {
        return !is_null($this->_preloadResult)
                && $this->_preloadResult instanceof DB_result;
    }

    /**
     * Gets next email from preload queue.
     *
     * @return object
     */
    public function fetch()
    {
        if (!$this->isPreloaded()) {
            $ret = SGL::raiseError('Queue is not preloaded',
                SGL_ERROR_INVALIDCALL);
        } else {
            $ret = $this->_preloadResult->fetchRow();
        }
        return $ret;
    }
}

?>