Skip to content

Commit

Permalink
bug #2883 Fix "embed" support when used from "template_from_string" (…
Browse files Browse the repository at this point in the history
…fabpot)

This PR was merged into the 1.x branch.

Discussion
----------

Fix "embed" support when used from "template_from_string"

closes #2761

Commits
-------

92a63e0 fixed "embed" support when used from "template_from_string"
  • Loading branch information
fabpot committed Mar 12, 2019
2 parents 9f23f7c + 92a63e0 commit 4eeaf76
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
@@ -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
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
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
@@ -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

0 comments on commit 4eeaf76

Please sign in to comment.