winter/modules/system/twig/Engine.php

33 lines
716 B
PHP

<?php namespace System\Twig;
use Twig\Environment as TwigEnvironment;
use Illuminate\Contracts\View\Engine as EngineInterface;
/**
* View engine used by the system, used for converting .htm files to twig.
*
* @package october\system
* @author Alexey Bobkov, Samuel Georges
*/
class Engine implements EngineInterface
{
/**
* @var TwigEnvironment
*/
protected $environment;
/**
* Constructor
*/
public function __construct(TwigEnvironment $environment)
{
$this->environment = $environment;
}
public function get($path, array $vars = [])
{
$template = $this->environment->loadTemplate($path);
return $template->render($vars);
}
}