Nitmedia\Wkhtml2pdf\Wkhtml2pdf::__construct PHP Method

__construct() public method

Constructor: initialize command line and reserve temporary file.
public __construct ( Nitmedia\Wkhtml2pdf\ConfigInterface $config, Nitmedia\Wkhtml2pdf\ViewInterface $view ) : Wkhtml2pdf
$config Nitmedia\Wkhtml2pdf\ConfigInterface
$view Nitmedia\Wkhtml2pdf\ViewInterface
return Wkhtml2pdf FALSE on failure
    public function __construct(ConfigInterface $config, ViewInterface $view)
    {
        $this->config = $config;
        $this->view = $view;
        $binpath = $this->config->get('binpath');
        if ($binpath) {
            /* Check for Absolute paths in *nix and Windows */
            if ($binpath[0] === '/' || $binpath[1] === ':') {
                $this->setBinPath($this->config->get('binpath'));
            } else {
                $this->setBinPath(realpath(__DIR__) . '/' . $this->config->get('binpath'));
            }
        }
        if ($this->config->get('binfile')) {
            $this->setBinFile($this->config->get('binfile'));
        }
        /* Check the binary executable exists */
        $this->getBin();
        if ($this->config->get('html')) {
            $this->setHtml($this->config->get('html'));
        }
        if ($this->config->get('orientation')) {
            $this->setOrientation($this->config->get('orientation'));
        } else {
            $this->setOrientation(self::ORIENTATION_PORTRAIT);
        }
        if ($this->config->get('page_size')) {
            $this->setPageSize($this->config->get('page_size'));
        } else {
            $this->setPageSize(self::SIZE_A4);
        }
        if ($this->config->get('toc')) {
            $this->setTOC($this->config->get('toc'));
        }
        if ($this->config->get('grayscale')) {
            $this->setGrayscale($this->config->get('grayscale'));
        }
        if ($this->config->get('title')) {
            $this->setTitle($this->config->get('title'));
        }
        if ($this->config->get('debug')) {
            $this->debug = $this->config->get('debug');
        }
        if ($this->config->get('header_html')) {
            $this->setHeaderHtml($this->config->get('header_html'));
        }
        if ($this->config->get('footer_html')) {
            $this->setFooterHtml($this->config->get('footer_html'));
        }
        if ($this->config->get('tmppath')) {
            $this->setTmpPath($this->config->get('tmppath'));
        }
        if ($this->config->get('output_mode')) {
            $this->setOutputMode($this->config->get('output_mode'));
        }
        if ($this->config->get('options')) {
            $this->setOptions($this->config->get('options'));
        }
    }