?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Columns/Content/



?? Go up: /home/webdevt/prestashop17/src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Columns

?? Viewing: toggle.html.twig

{#**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/OSL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to https://devdocs.prestashop.com/ for more information.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 *#}
{% set id_property_name = column.options.primary_field %}
{% set id_primary_key = record[id_property_name] %}
{% set record_id = record[id_property_name] %}

{% set isValid = record[column.id] is same as('1') %}

<div class="text-center">
  <div 
    class="ps-switch ps-switch-sm ps-switch-nolabel ps-switch-center ps-togglable-row"
    data-toggle-url="{{ path(column.options.route, {(column.options.route_param_name) : id_primary_key})}}"
  >
  <input type="radio" name="input-{{ column.options.route }}-{{ id_primary_key }}" id="input-false-{{ column.options.route }}-{{ id_primary_key }}" value="0" {% if not isValid %}checked{% endif %}>
      <label for="input-false-{{ column.options.route }}-{{ id_primary_key }}">Off</label>
      <input type="radio" name="input-{{ column.options.route }}-{{ id_primary_key }}" id="input-true-{{ column.options.route }}-{{ id_primary_key }}" value="1" {% if isValid %}checked{% endif %}>
      <label for="input-true-{{ column.options.route }}-{{ id_primary_key }}">On</label>
      <span class="slide-button"></span>
  </div>
</div>


??

??