28 lines
865 B
PHP
28 lines
865 B
PHP
<?php
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
namespace CloudObjects\PhpMAE;
|
|
|
|
class TwigTemplateFactory {
|
|
|
|
private $cachePath;
|
|
|
|
public function __construct($cachePath) {
|
|
$this->cachePath = $cachePath;
|
|
}
|
|
|
|
/**
|
|
* Creates a Twig template.
|
|
*
|
|
* @param string $string The template content.
|
|
* @param string $id An identifier that is used to cache the compiled template.
|
|
* If not provided, a hash of the template content is used instead.
|
|
*/
|
|
public function fromString(string $string, string $id = null) {
|
|
if ($id == null) $id = md5($string);
|
|
return new TwigTemplate($id, $string, $this->cachePath);
|
|
}
|
|
} |