<?php class ReduxFramework_raw {

    /**
     * Field Constructor.
     *
     * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
     *
     * @since ReduxFramework 3.0.4
    */
    function __construct($field = array(), $value ='', $parent) {
        $this->field = $field;
		$this-&gt;value = $value;
		$this-&gt;args = $parent-&gt;args;
    }

    /**
     * Field Render Function.
     *
     * Takes the vars and outputs the HTML for the field in the settings
     *
     * @since ReduxFramework 1.0.0
    */
    function render() {
    
        echo '<table class="form-table no-border redux-group-table" style="margin-top: 0;"><tbody><tr><td>';
        echo '<fieldset id="'.$this-&gt;parent-&gt;args['opt_name'].'-'.$this-&gt;field['id'].'" class="redux-field redux-container-'.$this-&gt;field['type'].' '.$this-&gt;field['class'].'" data-id="'.$this-&gt;field['id'].'">';

        if ( !empty( $this-&gt;field['include'] ) &amp;&amp; file_exists( $this-&gt;field['include'] ) ) {
            include( $this-&gt;field['include'] );
        }

        do_action('redux-field-raw-'.$this-&gt;parent-&gt;args['opt_name'].'-'.$this-&gt;field['id']);

        echo '</fieldset>';
        echo '</td></tr></tbody></table><table class="form-table no-border" style="margin-top: 0;"><tbody><tr><th></th><td>';        

    }
}
</td></tr></tbody></table>