aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-07-01 21:21:37 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-07-01 21:21:37 -0500
commite0f5e23032ce080c163439c1089a7b4994276da6 (patch)
tree1c6d5810a51a0a8faf1a80a8302b3ecf5024a5c6
parent16ebf14653c98cd842ee94a66d69b871a3ec0d25 (diff)
downloadforums-e0f5e23032ce080c163439c1089a7b4994276da6.tar
forums-e0f5e23032ce080c163439c1089a7b4994276da6.tar.gz
forums-e0f5e23032ce080c163439c1089a7b4994276da6.tar.bz2
forums-e0f5e23032ce080c163439c1089a7b4994276da6.tar.xz
forums-e0f5e23032ce080c163439c1089a7b4994276da6.zip
[feature/twig] Fixed tabs in environment.php
PHPBB3-11598
-rw-r--r--phpBB/includes/template/twig/environment.php81
1 files changed, 41 insertions, 40 deletions
diff --git a/phpBB/includes/template/twig/environment.php b/phpBB/includes/template/twig/environment.php
index d20da965c3..34e6f09981 100644
--- a/phpBB/includes/template/twig/environment.php
+++ b/phpBB/includes/template/twig/environment.php
@@ -29,7 +29,7 @@ class phpbb_template_twig_environment extends Twig_Environment
/** @var array **/
protected $namespaceLookUpOrder = array('__main__');
- public function __construct($phpbb_config, $phpbb_extensions, $phpbb_root_path, Twig_LoaderInterface $loader = null, $options = array())
+ public function __construct($phpbb_config, $phpbb_extensions, $phpbb_root_path, Twig_LoaderInterface $loader = null, $options = array())
{
$this->phpbb_config = $phpbb_config;
$this->phpbb_extensions = $phpbb_extensions;
@@ -38,19 +38,20 @@ class phpbb_template_twig_environment extends Twig_Environment
return parent::__construct($loader, $options);
}
- /**
- * Gets the cache filename for a given template.
- *
- * @param string $name The template name
- *
- * @return string The cache file name
- */
- public function ignoregetCacheFilename($name)
- {
- if (false === $this->cache) {
- return false;
- }
-// @todo
+ /**
+ * Gets the cache filename for a given template.
+ *
+ * @param string $name The template name
+ *
+ * @return string The cache file name
+ */
+ public function ignoregetCacheFilename($name)
+ {
+ if (false === $this->cache)
+ {
+ return false;
+ }
+ // @todo
$file_path = $this->getLoader()->getCacheKey($name);
foreach ($this->getLoader()->getNamespaces() as $namespace)
{
@@ -64,9 +65,9 @@ class phpbb_template_twig_environment extends Twig_Environment
}
// We probably should never get here under normal circumstances
- return $this->getCache() . '/' . preg_replace('#[^a-zA-Z0-9_/]#', '_', $name) . '.php';
- return $this->getCache() . '/' . preg_replace('#[^a-zA-Z0-9_/]#', '_', $name) . '_' . md5($this->getLoader()->getCacheKey($name)) . '.php';
- }
+ return $this->getCache() . '/' . preg_replace('#[^a-zA-Z0-9_/]#', '_', $name) . '.php';
+ return $this->getCache() . '/' . preg_replace('#[^a-zA-Z0-9_/]#', '_', $name) . '_' . md5($this->getLoader()->getCacheKey($name)) . '.php';
+ }
/**
* Get the list of enabled phpBB extensions
@@ -112,7 +113,7 @@ class phpbb_template_twig_environment extends Twig_Environment
* Set the namespace look up order to load templates from
*
* @param array $namespace
- * @return Twig_Environment
+ * @return Twig_Environment
*/
public function setNamespaceLookUpOrder($namespace)
{
@@ -121,28 +122,28 @@ class phpbb_template_twig_environment extends Twig_Environment
return $this;
}
- /**
- * Loads a template by name.
- *
- * @param string $name The template name
- * @param integer $index The index if it is an embedded template
- *
- * @return Twig_TemplateInterface A template instance representing the given template name
- */
- public function loadTemplate($name, $index = null)
- {
- if (strpos($name, '@') === false)
- {
- foreach ($this->namespaceLookUpOrder as $namespace)
- {
- try
- {
- if ($namespace === '__main__')
- {
- return parent::loadTemplate($name, $index);
+ /**
+ * Loads a template by name.
+ *
+ * @param string $name The template name
+ * @param integer $index The index if it is an embedded template
+ *
+ * @return Twig_TemplateInterface A template instance representing the given template name
+ */
+ public function loadTemplate($name, $index = null)
+ {
+ if (strpos($name, '@') === false)
+ {
+ foreach ($this->namespaceLookUpOrder as $namespace)
+ {
+ try
+ {
+ if ($namespace === '__main__')
+ {
+ return parent::loadTemplate($name, $index);
}
- return parent::loadTemplate('@' . $namespace . '/' . $name, $index);
+ return parent::loadTemplate('@' . $namespace . '/' . $name, $index);
}
catch (Twig_Error_Loader $e)
{
@@ -154,9 +155,9 @@ class phpbb_template_twig_environment extends Twig_Environment
}
else
{
- return parent::loadTemplate($name, $index);
+ return parent::loadTemplate($name, $index);
}
- }
+ }
/**
* recursive helper to set variables into $context so that Twig can properly fetch them for display