HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpemobiq/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
    }
}