diff options
author | Tristan Darricau <github@nicofuma.fr> | 2016-12-11 20:41:39 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2016-12-11 20:41:39 +0100 |
commit | 230e737790cb8f6ecd35dcb88c86ce3e60a587b8 (patch) | |
tree | 70381e6596ca88e83965e384c9d69f82de03f0b5 /phpBB/phpbb/profilefields | |
parent | 08d169c10997a21fdb7df1ecb57e06729902d79b (diff) | |
parent | 47e418e50e9d516e768bd675892c3c4f5dfa571e (diff) | |
download | forums-230e737790cb8f6ecd35dcb88c86ce3e60a587b8.tar forums-230e737790cb8f6ecd35dcb88c86ce3e60a587b8.tar.gz forums-230e737790cb8f6ecd35dcb88c86ce3e60a587b8.tar.bz2 forums-230e737790cb8f6ecd35dcb88c86ce3e60a587b8.tar.xz forums-230e737790cb8f6ecd35dcb88c86ce3e60a587b8.zip |
Merge pull request #4558 from javiexin/ticket/14889
[ticket/14889] Missing method in profile fields type interface
* javiexin/ticket/14889:
[ticket/14889] Missing method in profile fields type interface
Diffstat (limited to 'phpBB/phpbb/profilefields')
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_interface.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_interface.php b/phpBB/phpbb/profilefields/type/type_interface.php index ec770f9467..93b9e4b893 100644 --- a/phpBB/phpbb/profilefields/type/type_interface.php +++ b/phpBB/phpbb/profilefields/type/type_interface.php @@ -134,6 +134,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 * * @return string Returns the database column type |