added Twig_Environment::display()
authorFabien Potencier <fabien.potencier@gmail.com>
Mon, 17 Oct 2011 11:01:40 +0000 (13:01 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 17 Oct 2011 11:01:40 +0000 (13:01 +0200)
CHANGELOG
lib/Twig/Environment.php

index 84b314b..c388205 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,6 @@
 * 1.4.0
 
+ * added Twig_Environment::display()
  * made the escape filter smarter when the encoding is not supported by PHP
  * added a convert_encoding filter
  * moved all node manipulations outside the compile() Node method
index 27fd62f..fe04c2e 100644 (file)
@@ -283,6 +283,17 @@ class Twig_Environment
     }
 
     /**
+     * Displays a template.
+     *
+     * @param string $name    The template name
+     * @param array  $context An array of parameters to pass to the template
+     */
+    public function display($name, array $context = array())
+    {
+        $this->loadTemplate($name)->display($context);
+    }
+
+    /**
      * Loads a template by name.
      *
      * @param  string  $name  The template name