toggle-v2.php
568 Bytes
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$id = $this->id ?: uniqid( 'ac_', false );
$value = $this->value ?: '1';
?>
<div class="ac-toggle-v2">
<span class="ac-toggle-v2__toggle">
<input class="ac-toggle-v2__toggle__input" <?= $this->attributes; ?> type="checkbox" value="<?= $value; ?>" <?php if ( $this->checked ): ?>checked="checked"<?php endif; ?>>
<span class="ac-toggle-v2__toggle__track"></span>
<span class="ac-toggle-v2__toggle__thumb"></span>
</span>
<label for="<?= $id; ?>" class="ac-toggle-v2__label"><?= $this->label; ?></label>
</div>