I found this function function eps_extra_fields_hide() {
$list = trim(eps_param('post_extra_exclude'));
$array = explode(',', $list);
$array = array_map('trim', $array);
$array = array_filter($array);
if(!empty($array) && count($array) > 0) {
return $array;
} else {
return array();
}
}, but I don't understand where the settings in the admin area come from