get_field_name( $id ) ;
$cache_status_list = array(
array( Base::VAL_ON, __( 'Public', 'litespeed-cache' ) ),
array( Base::VAL_ON2, __( 'Private', 'litespeed-cache' ) ),
array( Base::VAL_OFF, __( 'Disable', 'litespeed-cache' ) ),
) ;
foreach ( $cache_status_list as $v ) {
list( $v, $txt ) = $v ;
$id_attr = $widget->get_field_id( $id ) . '_' . $v ;
$checked = $esi === $v ? 'checked' : '' ;
echo " " ;
}
?>