/**
  * Get all the extra field information of a certain field (also the options)
  *
  * @param int $field_name the name of the field we want to know everything of
  * @return array $return containing all th information about the extra profile field
  * @author Julio Montoya
  * @deprecated
  * @since v1.8.6
  */
 public static function get_extra_field_information($fieldId)
 {
     $extraField = new ExtraField('user');
     return $extraField->getFieldInfoByFieldId($fieldId);
 }