Created
May 19, 2014 11:55
-
-
Save morlay/7358a8c7877e64c5f8d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require_once(DRUPAL_ROOT . '/sites/all/libraries/Twig/lib/Twig/Autoloader.php'); | |
| Twig_Autoloader::register(); | |
| function twig_render_string($string, $array) | |
| { | |
| return ((new Twig_Environment(new Twig_Loader_String()))->render($string, $array)); | |
| } | |
| function twig_render_file($file, $array) | |
| { | |
| $twig = new Twig_Environment(new Twig_Loader_Filesystem(drupal_get_path('theme', 'balance') . '/views')); | |
| return ($twig->render($file, $array)); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment