123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- /* div_for_slider_effect.twig */
- class __TwigTemplate_5c234cf57b36461423478a668cc387024dc29679e913d9d6a691a1d682d57179 extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
- $this->parent = false;
- $this->blocks = [
- ];
- }
- protected function doDisplay(array $context, array $blocks = [])
- {
- // line 1
- if ((($context["initial_sliders_state"] ?? null) == "disabled")) {
- // line 2
- echo " <div";
- if ((isset($context["id"]) || array_key_exists("id", $context))) {
- echo " id=\"";
- echo twig_escape_filter($this->env, ($context["id"] ?? null), "html", null, true);
- echo "\"";
- }
- echo ">
- ";
- } else {
- // line 4
- echo " ";
- // line 12
- echo " <div";
- if ((isset($context["id"]) || array_key_exists("id", $context))) {
- echo " id=\"";
- echo twig_escape_filter($this->env, ($context["id"] ?? null), "html", null, true);
- echo "\"";
- }
- // line 13
- echo " ";
- if ((($context["initial_sliders_state"] ?? null) == "closed")) {
- // line 14
- echo "style=\"display: none; overflow:auto;\"";
- }
- echo " class=\"pma_auto_slider\"";
- // line 15
- if ((isset($context["message"]) || array_key_exists("message", $context))) {
- echo " title=\"";
- echo twig_escape_filter($this->env, ($context["message"] ?? null), "html", null, true);
- echo "\"";
- }
- echo ">
- ";
- }
- }
- public function getTemplateName()
- {
- return "div_for_slider_effect.twig";
- }
- public function isTraitable()
- {
- return false;
- }
- public function getDebugInfo()
- {
- return array ( 47 => 15, 43 => 14, 40 => 13, 33 => 12, 31 => 4, 21 => 2, 19 => 1,);
- }
- /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
- public function getSource()
- {
- @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
- return $this->getSourceContext()->getCode();
- }
- public function getSourceContext()
- {
- return new Twig_Source("", "div_for_slider_effect.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\div_for_slider_effect.twig");
- }
- }
|