File: /var/www/html/bwcdev/wp-content/themes/salient/nectar/options/fields/checkbox/field_checkbox.php
<?php
class Redux_Options_checkbox {
/**
* Field Constructor.
*
* Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
*
* @since Redux_Options 1.0.0
*/
function __construct($field = array(), $value ='', $parent) {
$this->field = $field;
$this->value = $value;
$this->args = $parent->args;
}
/**
* Field Render Function.
*
* Takes the vars and outputs the HTML for the field in the settings
*
* @since Redux_Options 1.0.0
*/
function render() {
$name = $this->args['opt_name'] . '[' . $this->field['id'] . ']';
$id = $this->field['id'];
$desc = isset($this->field['desc']) ? $this->field['desc'] : '';
$class = isset($this->field['class']) ? $this->field['class'] : '';
$switch = isset($this->field['switch']) ? $this->field['switch'] : false;
?>
<label <?php if($switch) : ?>class="switch_wrap"<?php endif; ?>>
<input name="<?php echo esc_attr( $name ); ?>" id="<?php echo esc_attr( $id ); ?>" class="<?php echo esc_attr( $class ); ?>" value="1" <?php echo checked($this->value, '1', FALSE); ?> type="checkbox" />
<?php if($switch) : ?><div class="switch"><span class="bullet"></span></div><?php endif; ?>
</label>
<?php if($desc != '') : ?>
<label for="<?php echo esc_attr( $id ); ?>"><?php echo esc_attr( $desc ); ?></label>
<?php endif; ?>
<?php
}
}