it’s ok I changer it
if($input['type'] != 'hidden' && $input['type'] != 'current_date') {
if ($options['wpcf7css']) { $content .= '<p>'; }
if ($input['type'] == 'checkbox') {
if( isset( $_POST[$id] ) ){
$post_val = $_POST[$id];
}else{
$post_val = '';
}
$content .= "\t\n\t".'<input type="checkbox" id="sf_'.$id.'" class="w2linput checkbox" name="'.$id.'" value="1" '.checked( 1, $val, false ).' />'."\n\n";
}