/**
  * Method to load a form field object given a type.
  *
  * @param	string	$type	The field type.
  * @param	boolean	$new	Flag to toggle whether we should get a new instance of the object.
  *
  * @return	mixed	GantryFormField object on success, false otherwise.
  * @since	1.6
  */
 protected function loadGroupType($type, $new = true)
 {
     return GantryFormHelper::loadGroupType($type, $new);
 }