Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "embed" support when used from "template_from_string" #2883

Merged
merged 1 commit into from
Mar 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
* 1.38.0 (2019-XX-XX)

* fixed "embed" support when used from "template_from_string"
* added the possibility to pass a TemplateWrapper to Twig\Environment::load()
* improved the performance of the sandbox
* added a spaceless filter
Expand Down
16 changes: 12 additions & 4 deletions src/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public function getTemplateClass($name, $index = null)
{
$key = $this->getLoader()->getCacheKey($name).$this->optionsHash;

return $this->templateClassPrefix.hash('sha256', $key).(null === $index ? '' : '_'.$index);
return $this->templateClassPrefix.hash('sha256', $key).(null === $index ? '' : '___'.$index);
}

/**
Expand Down Expand Up @@ -443,9 +443,17 @@ public function load($name)
*/
public function loadTemplate($name, $index = null)
{
$cls = $mainCls = $this->getTemplateClass($name);
return $this->loadClass($this->getTemplateClass($name), $name, $index);
}

/**
* @internal
*/
public function loadClass($cls, $name, $index = null)
{
$mainCls = $cls;
if (null !== $index) {
$cls .= '_'.$index;
$cls .= '___'.$index;
}

if (isset($this->loadedTemplates[$cls])) {
Expand Down Expand Up @@ -491,7 +499,7 @@ public function loadTemplate($name, $index = null)
}

if (!class_exists($cls, false)) {
throw new RuntimeError(sprintf('Failed to load Twig template "%s", index "%s": cache is corrupted.', $name, $index), -1, $source);
throw new RuntimeError(sprintf('Failed to load Twig template "%s", index "%s": cache might be corrupted.', $name, $index), -1, $source);
}
}

Expand Down
9 changes: 9 additions & 0 deletions src/Template.php
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,15 @@ protected function loadTemplate($template, $templateName = null, $line = null, $
return $template;
}

if ($template === $this->getTemplateName()) {
$class = get_class($this);
if (false !== $pos = strrpos($class, '___', -1)) {
$class = substr($class, 0, $pos);
}

return $this->env->loadClass($class, $template, $index);
}

return $this->env->loadTemplate($template, $index);
} catch (Error $e) {
if (!$e->getSourceContext()) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--TEST--
"template_from_string" function works in an "include"
--TEMPLATE--
{% set embed = '{% embed "embed.twig" %}{% endembed %}' %}
{{ include(template_from_string(embed)) }}
--TEMPLATE(embed.twig)--
Cool
--DATA--
return []
--EXPECT--
Cool