1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-21 08:12:17 +02:00

Merge branch '3.2.x'

* 3.2.x:
  [ticket/14889] Missing method in profile fields type interface
This commit is contained in:
Tristan Darricau 2016-12-11 20:41:45 +01:00
commit 41f4de72f5
No known key found for this signature in database
GPG Key ID: 817043C2E29DB881

View File

@ -133,6 +133,14 @@ interface type_interface
*/
public function get_field_ident($field_data);
/**
* Get the localized name of the field
*
* @param string $field_name Unlocalized name of this field
* @return string Localized name of the field
*/
public function get_field_name($field_name);
/**
* Get the column type for the database
*