/**
  * get tags allowed
  */
 protected function _get_allowed_tags()
 {
     return EEH_HTML::get_simple_tags();
 }
 /**
  * removes all tags when setting
  * @param string $value_inputted_for_field_on_model_object
  * @return string
  */
 function prepare_for_set($value_inputted_for_field_on_model_object)
 {
     $value_with_select_tags = wp_kses("{$value_inputted_for_field_on_model_object}", EEH_HTML::get_simple_tags());
     return parent::prepare_for_set($value_with_select_tags);
 }
 /**
  * Determines what tags to allow in this model field
  * @global array $allowedtags
  * @return array
  */
 function _get_allowed_tags()
 {
     return apply_filters('FHEE__EE_Maybe_Serialized_Simple_HTML_Field___get_allowed_tags', EEH_HTML::get_simple_tags(), $this);
 }