This commit is contained in:
2024-03-27 22:39:26 +01:00
parent 269d85ce11
commit d28a600b56
7945 changed files with 1474678 additions and 62 deletions

View File

@@ -0,0 +1,78 @@
<?php
namespace WPML\Core;
use \WPML\Core\Twig\Environment;
use \WPML\Core\Twig\Error\LoaderError;
use \WPML\Core\Twig\Error\RuntimeError;
use \WPML\Core\Twig\Markup;
use \WPML\Core\Twig\Sandbox\SecurityError;
use \WPML\Core\Twig\Sandbox\SecurityNotAllowedTagError;
use \WPML\Core\Twig\Sandbox\SecurityNotAllowedFilterError;
use \WPML\Core\Twig\Sandbox\SecurityNotAllowedFunctionError;
use \WPML\Core\Twig\Source;
use \WPML\Core\Twig\Template;
/* dialog-box.twig */
class __TwigTemplate_be5cb5885c909af23b21ccd778c7d7f5792e4bcd465aa16ae3c868006d94456a extends \WPML\Core\Twig\Template
{
public function __construct(Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
echo "<div id=\"wpml-ls-dialog\" style=\"display:none;\" >
<div class=\"js-wpml-ls-dialog-inner\">
</div>
<div class=\"wpml-dialog-footer \">
<span class=\"errors icl_error_text\"></span>
<input class=\"js-wpml-ls-dialog-close cancel wpml-dialog-close-button alignleft\" value=\"";
// line 7
echo \WPML\Core\twig_escape_filter($this->env, $this->getAttribute($this->getAttribute(($context["strings"] ?? null), "misc", []), "button_cancel", []), "html", null, true);
echo "\" type=\"button\">
<input class=\"js-wpml-ls-dialog-save button-primary term-save alignright\" value=\"";
// line 8
echo \WPML\Core\twig_escape_filter($this->env, $this->getAttribute($this->getAttribute(($context["strings"] ?? null), "misc", []), "button_save", []), "html", null, true);
echo "\" type=\"submit\">
<span class=\"spinner alignright\"></span>
</div>
</div>";
}
public function getTemplateName()
{
return "dialog-box.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 44 => 8, 40 => 7, 32 => 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 Source("", "dialog-box.twig", "/home/infinitycons/ftp/wingedit/doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/templates/language-switcher-admin-ui/dialog-box.twig");
}
}