123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
-
- /* SensioDistributionBundle::Configurator/final.html.twig */
- class __TwigTemplate_ed782761bba8eeefb15248eb807bb6ed extends Twig_Template
- {
- protected $parent;
-
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
-
- $this->parent = array();
- $this->blocks = array(
- 'content_class' => array($this, 'block_content_class'),
- 'content' => array($this, 'block_content'),
- );
- }
-
- public function getParent(array $context)
- {
- $parent = "SensioDistributionBundle::Configurator/layout.html.twig";
- if ($parent instanceof Twig_Template) {
- $name = $parent->getTemplateName();
- $this->parent[$name] = $parent;
- $parent = $name;
- } elseif (!isset($this->parent[$parent])) {
- $this->parent[$parent] = $this->env->loadTemplate($parent);
- }
-
- return $this->parent[$parent];
- }
-
- protected function doDisplay(array $context, array $blocks = array())
- {
- $context = array_merge($this->env->getGlobals(), $context);
-
- $this->getParent($context)->display($context, array_merge($this->blocks, $blocks));
- }
-
- // line 3
- public function block_content_class($context, array $blocks = array())
- {
- echo "config_done";
- }
-
- // line 4
- public function block_content($context, array $blocks = array())
- {
- // line 5
- echo " <h1>Well done!</h1>
- ";
- // line 6
- if ($this->getContext($context, 'is_writable')) {
- // line 7
- echo " <h2>Your distribution is configured!</h2>
- ";
- } else {
- // line 9
- echo " <h2 class=\"configure-error\">Your distribution is almost configured but...</h2>
- ";
- }
- // line 11
- echo " <h3>
- <span>
- ";
- // line 13
- if ($this->getContext($context, 'is_writable')) {
- // line 14
- echo " Your parameters.ini has been overwritten with these parameters (in <em>";
- echo twig_escape_filter($this->env, $this->getContext($context, 'ini_path'), "html");
- echo "</em>):
- ";
- } else {
- // line 16
- echo " Your parameters.ini file is not writeable! Here are the parameters you can copy and paste in <em>";
- echo twig_escape_filter($this->env, $this->getContext($context, 'ini_path'), "html");
- echo "</em>:
- ";
- }
- // line 18
- echo " </span>
- </h3>
-
- <textarea class=\"symfony-configuration\">";
- // line 21
- echo twig_escape_filter($this->env, $this->getContext($context, 'parameters'), "html");
- echo "</textarea>
-
- ";
- // line 23
- if ($this->getContext($context, 'welcome_url')) {
- // line 24
- echo " <ul>
- <li><a href=\"";
- // line 25
- echo twig_escape_filter($this->env, $this->getContext($context, 'welcome_url'), "html");
- echo "\">Go to the Welcome page</a></li>
- </ul>
- ";
- }
- }
-
- public function getTemplateName()
- {
- return "SensioDistributionBundle::Configurator/final.html.twig";
- }
-
- public function isTraitable()
- {
- return false;
- }
- }
|