geno/wp-content/plugins/mailpoet/generated/twig/2c/2c44d80b3101e368f142a6f11b9106c1337eb815c2feccd3174551c8f0a98e93.php
2024-02-01 11:54:18 +00:00

113 lines
4 KiB
PHP

<?php
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Environment;
use MailPoetVendor\Twig\Error\LoaderError;
use MailPoetVendor\Twig\Error\RuntimeError;
use MailPoetVendor\Twig\Extension\SandboxExtension;
use MailPoetVendor\Twig\Markup;
use MailPoetVendor\Twig\Sandbox\SecurityError;
use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedTagError;
use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedFilterError;
use MailPoetVendor\Twig\Sandbox\SecurityNotAllowedFunctionError;
use MailPoetVendor\Twig\Source;
use MailPoetVendor\Twig\Template;
/* form/templatesLegacy/settings/date_types.hbs */
class __TwigTemplate_e09d68cf316097fd5135112267ebb032f67c0f65a0d93eb763abf51281c496ca extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 1
echo "<p class=\"clearfix\">
<label>";
// line 2
echo $this->extensions['MailPoet\Twig\I18n']->translate("Type of date");
echo "</label>
<select name=\"params[date_type]\">
";
// line 4
$context['_parent'] = $context;
$context['_seq'] = \MailPoetVendor\twig_ensure_traversable(($context["date_types"] ?? null));
foreach ($context['_seq'] as $context["type"] => $context["label"]) {
// line 5
echo " <option
{{#ifCond params.date_type \"==\" \"";
// line 6
echo \MailPoetVendor\twig_escape_filter($this->env, $context["type"], "html", null, true);
echo "\"}}
selected=\"selected\"
{{/ifCond}}
data-format=\"";
// line 9
echo \MailPoetVendor\twig_escape_filter($this->env, (($__internal_compile_0 = (($__internal_compile_1 = ($context["date_formats"] ?? null)) && is_array($__internal_compile_1) || $__internal_compile_1 instanceof ArrayAccess ? ($__internal_compile_1[$context["type"]] ?? null) : null)) && is_array($__internal_compile_0) || $__internal_compile_0 instanceof ArrayAccess ? ($__internal_compile_0[0] ?? null) : null), "html", null, true);
echo "\" value=\"";
echo \MailPoetVendor\twig_escape_filter($this->env, $context["type"], "html", null, true);
echo "\"
>";
// line 10
echo \MailPoetVendor\twig_escape_filter($this->env, $context["label"], "html", null, true);
echo "</option>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['type'], $context['label'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 12
echo " </select>
<input type=\"hidden\" name=\"params[date_format]\" value=\"\" />
</p>
<script type=\"text/javascript\">
jQuery(function(\$) {
\$('select[name=\"params[date_type]\"]').on('change', function() {
// set default date format depending on date type
\$('input[name=\"params[date_format]\"]')
.val(\$(this)
.find('option:selected')
.data('format'));
});
// set default format
\$('select[name=\"params[date_type]\"]').trigger('change');
});
<{{!}}/script>";
}
public function getTemplateName()
{
return "form/templatesLegacy/settings/date_types.hbs";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 72 => 12, 64 => 10, 58 => 9, 52 => 6, 49 => 5, 45 => 4, 40 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "form/templatesLegacy/settings/date_types.hbs", "/home/circleci/mailpoet/mailpoet/views/form/templatesLegacy/settings/date_types.hbs");
}
}