whoami7 - Manager
:
/
home
/
analuakl
/
somethingsmushy.com
/
wp-content
/
plugins
/
wp-registration
/
templates
/
inputs
/
Upload File:
files >> /home/analuakl/somethingsmushy.com/wp-content/plugins/wp-registration/templates/inputs/checkbox.php
<?php /** ** WPR Template to render checkbox input **/ // not run if accessed directly if( ! defined("ABSPATH" ) ) die("Not Allewed"); $fm = new WPR_InputMeta($field_meta, 'checkbox'); ?> <div class="col-md-<?php echo esc_attr($fm->width) ?> wpr_field_wrapper"> <div class="form-group input-group wpr-field-header"> <label class="wpr-field-title"> <?php echo $fm ->title; ?> <span class="wpr_field_icon" data-desc="<?php echo esc_attr($fm->desc) ?>"> *</span> <span class="wpr-field-desc"><?php echo $fm->desc; ?></span> </label> </div> <div class="wpr-field-body"> <p class="wpr_field_selector" data-key="<?php echo esc_attr($fm->data_name) ?>" data-type="checkbox" > <?php foreach ($fm->options as $option) { $key = $option['key']; $label = $option['label']; $opt_id = $option['option_id']; $selected = ''; if( !empty($fm->value) ) { $selected = in_array($key, $fm->value) ? 'checked="checked"' : ''; } ?> <label for="<?php echo esc_attr($opt_id);?>" class="wpr-radio-check wpr-checkmarks-style"> <input style = "opacity: 0;" type="checkbox" name="<?php echo esc_attr($fm->input_name_multiple) ?>" id="<?php echo esc_attr($opt_id);?>" class="<?php echo esc_attr($fm->input_classes);?> " data-req="<?php echo esc_attr($fm->required) ?>" data-message="<?php echo esc_attr($fm->error_msg) ?>" data-min="<?php echo esc_attr($fm->min_checked) ?>" data-max="<?php echo esc_attr($fm->max_checked) ?>" value="<?php echo esc_attr($key) ?>" <?php echo $selected; ?> > <span class="wpr-checkmark-span" style="border-radius: 0px;"></span> <?php echo $label ?> </label> <?php } ?> </p> </div> <span class="wpr_field_error"></span> </div>
Copyright ©2021 || Defacer Indonesia