/**
 * Retrieve the label of a given field id (for a specific form)
 *
 * @access public
 * @param mixed $form
 * @param mixed $field_id
 * @return string
 */
function gravityview_get_field_label($form, $field_id, $field_value = '')
{
    return GVCommon::get_field_label($form, $field_id, $field_value);
}
 /**
  * Retrieve the label of a given field id (for a specific form)
  *
  * @access public
  * @param mixed $form
  * @param mixed $field_id
  * @return string
  */
 function gravityview_get_field_label($form, $field_id)
 {
     return GVCommon::get_field_label($form, $field_id);
 }