OwlCyberSecurity - MANAGER
Edit File: 2c603368b196b906f9cb9bf63381f11dedf47ec8481253bc5c121218d50176b1.php
<?php if (!defined('ABSPATH')) exit; use MailPoetVendor\Twig\Environment; use MailPoetVendor\Twig\Error\LoaderError; use MailPoetVendor\Twig\Error\RuntimeError; use MailPoetVendor\Twig\Extension\CoreExtension; 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/segment_selection.hbs */ class __TwigTemplate_a56b98597185bd94848e20889223b924a6c7613ed81a9303bb7a0ae266393ed5 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 yield "<ul id=\"mailpoet_segment_selection\" class=\"clearfix\"></ul> <div id=\"mailpoet_segment_available_container\"> <h3>"; // line 4 yield $this->extensions['MailPoet\Twig\I18n']->translate("Select the list that you want to add:"); yield "</h3> <select class=\"mailpoet_segment_available\"></select> <a href=\"javascript:;\" class=\"mailpoet_segment_add\"><span>"; // line 8 yield $this->extensions['MailPoet\Twig\I18n']->translate("Add"); yield "</span></a> </div> <script type=\"text/javascript\"> jQuery(function(\$) { "; // line 13 yield " var selected_segments = {{#if params.values}}{{{ json_encode params.values }}} {{else}}[]{{/if}}; "; // line 17 yield " \$(function() { mailpoet_segment_available_render(); mailpoet_segment_selection_render(); setInputNames(); // add segment \$('.mailpoet_segment_add').on('click', function() { // add currently selected segment to the selection var selected_segment = \$('.mailpoet_segment_available :selected'); // add segment to selection selected_segments.push({ id: selected_segment.val(), name: selected_segment.text(), is_checked: 0 }); // remove segment from available segments selected_segment.remove(); // render selection mailpoet_segment_selection_render(); setInputNames(); }); // remove segment \$('#mailpoet_segment_selection').on('click', '.remove', function(e) { if(\$('#mailpoet_segment_selection').children().length === 1) { return e.preventDefault(); } var element = \$(this).parents('li'); // remove currently selected segment to the selection var selected_segment = parseInt(element.data('segment'), 10); // remove segment from selection selected_segments = selected_segments.filter(function(segment) { return (parseInt(segment.id, 10) !== selected_segment); }); // remove element element.remove(); // render available segment mailpoet_segment_available_render(); setInputNames(); }); }); function setupSortableSegments() { // make segment selection sortable Sortable.create('mailpoet_segment_selection', { handles: \$\$('#mailpoet_segment_selection .handle'), onChange: function(item) { setInputNames(); } }); } function mailpoet_segment_available_render() { // clear available segments \$('.mailpoet_segment_available').html(''); var selected_segment_ids = selected_segments.map(function(segment) { return segment.id; }); // display available segments \$.each(mailpoet_segments, function(i, segment) { if(\$.inArray(segment.id, selected_segment_ids) < 0) { \$('.mailpoet_segment_available').append( '<option value=\"'+segment.id+'\">'+segment.name+'</option>' ); } }); mailpoet_segment_available_toggle(); } function mailpoet_segment_selection_render() { // segment item template var template = Handlebars.compile( \$('#field_settings_segment_selection_item').html() ); // update view \$('#mailpoet_segment_selection').html( template({ segments: selected_segments }) ); mailpoet_segment_available_toggle(); } function mailpoet_segment_available_toggle() { // toggle visibility of available segments if(\$('.mailpoet_segment_available option').length === 0) { \$('#mailpoet_segment_available_container').hide(); } else { \$('#mailpoet_segment_available_container').show(); } } function setInputNames() { \$('#mailpoet_segment_selection li').each(function(index, item) { \$(item).find('.mailpoet_is_checked').attr('name', 'params[values]['+index+'][is_checked]'); \$(item).find('.mailpoet_segment_id').attr('name', 'params[values]['+index+'][id]'); \$(item).find('.mailpoet_segment_name').attr('name', 'params[values]['+index+'][name]'); }); setupSortableSegments(); } }); <{{!}}/script> "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "form/templatesLegacy/settings/segment_selection.hbs"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 62 => 17, 58 => 13, 50 => 8, 43 => 4, 38 => 1,); } public function getSourceContext() { return new Source("", "form/templatesLegacy/settings/segment_selection.hbs", "/home/circleci/mailpoet/mailpoet/views/form/templatesLegacy/settings/segment_selection.hbs"); } }