File "checkbox-array.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/checkbox-array.php
File size: 1.28 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Template for displaying the checkbox-array field
*
* @var array $field The field.
* @package YITH\PluginFramework\Templates\Fields
* @since 3.4.0
*/
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
list ( $field_id, $name, $class, $options, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'name', 'class', 'options', 'value', 'data', 'custom_attributes' );
$class = isset( $class ) ? $class : '';
$class = 'yith-plugin-fw-checkbox-array ' . $class;
$value = is_array( $value ) ? $value : array();
?>
<div class="<?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $field_id ); ?>"
<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
<?php foreach ( $options as $key => $label ) : ?>
<?php
$checkbox_id = sanitize_key( $field_id . '-' . $key );
?>
<div class="yith-plugin-fw-checkbox-array__row">
<input type="checkbox" id="<?php echo esc_attr( $checkbox_id ); ?>" name="<?php echo esc_attr( $name ); ?>[]" value="<?php echo esc_attr( $key ); ?>" <?php checked( in_array( $key, $value, true ) ); ?> />
<label for="<?php echo esc_attr( $checkbox_id ); ?>"><?php echo wp_kses_post( $label ); ?></label>
</div>
<?php endforeach; ?>
</div>