99 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Twig\Environment;
 | |
| use Twig\Error\LoaderError;
 | |
| use Twig\Error\RuntimeError;
 | |
| use Twig\Extension\SandboxExtension;
 | |
| use Twig\Markup;
 | |
| use Twig\Sandbox\SecurityError;
 | |
| use Twig\Sandbox\SecurityNotAllowedTagError;
 | |
| use Twig\Sandbox\SecurityNotAllowedFilterError;
 | |
| use Twig\Sandbox\SecurityNotAllowedFunctionError;
 | |
| use Twig\Source;
 | |
| use Twig\Template;
 | |
| 
 | |
| /* form/resultItem.html.twig */
 | |
| class __TwigTemplate_94bc2d1f79a7d79af045673fc12da74a extends Template
 | |
| {
 | |
|     private $source;
 | |
|     private $macros = [];
 | |
| 
 | |
|     public function __construct(Environment $env)
 | |
|     {
 | |
|         parent::__construct($env);
 | |
| 
 | |
|         $this->source = $this->getSourceContext();
 | |
| 
 | |
|         $this->blocks = [
 | |
|             'title' => [$this, 'block_title'],
 | |
|             'content' => [$this, 'block_content'],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     protected function doGetParent(array $context)
 | |
|     {
 | |
|         // line 1
 | |
|         return "layouts/simple.html.twig";
 | |
|     }
 | |
| 
 | |
|     protected function doDisplay(array $context, array $blocks = [])
 | |
|     {
 | |
|         $macros = $this->macros;
 | |
|         $this->parent = $this->loadTemplate("layouts/simple.html.twig", "form/resultItem.html.twig", 1);
 | |
|         $this->parent->display($context, array_merge($this->blocks, $blocks));
 | |
|     }
 | |
| 
 | |
|     // line 3
 | |
|     public function block_title($context, array $blocks = [])
 | |
|     {
 | |
|         $macros = $this->macros;
 | |
|         echo twig_escape_filter($this->env, ($context["title"] ?? null), "html", null, true);
 | |
|     }
 | |
| 
 | |
|     // line 5
 | |
|     public function block_content($context, array $blocks = [])
 | |
|     {
 | |
|         $macros = $this->macros;
 | |
|         // line 6
 | |
|         echo "    <h1 class=\"display-4\">";
 | |
|         echo twig_escape_filter($this->env, ($context["title"] ?? null), "html", null, true);
 | |
|         echo "</h1>
 | |
| 
 | |
|     ";
 | |
|         // line 8
 | |
|         echo twig_escape_filter($this->env, $this->env->getFunction('create_get_action')->getCallable()(), "html", null, true);
 | |
|         echo "
 | |
| 
 | |
| ";
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @codeCoverageIgnore
 | |
|      */
 | |
|     public function getTemplateName()
 | |
|     {
 | |
|         return "form/resultItem.html.twig";
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @codeCoverageIgnore
 | |
|      */
 | |
|     public function isTraitable()
 | |
|     {
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @codeCoverageIgnore
 | |
|      */
 | |
|     public function getDebugInfo()
 | |
|     {
 | |
|         return array (  64 => 8,  58 => 6,  54 => 5,  47 => 3,  36 => 1,);
 | |
|     }
 | |
| 
 | |
|     public function getSourceContext()
 | |
|     {
 | |
|         return new Source("", "form/resultItem.html.twig", "/home/kali/php/untitled/views/form/resultItem.html.twig");
 | |
|     }
 | |
| }
 | 
