1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-22 09:31:28 +02:00

[ticket/12730] Switch service name to googleplus for type_googleplus

PHPBB3-12730
This commit is contained in:
Shitiz Garg
2014-06-21 01:54:15 +05:30
parent 83966a575b
commit 985dbd4482

View File

@@ -18,9 +18,9 @@ class type_googleplus extends type_string
/**
* {@inheritDoc}
*/
public function get_name_short()
public function get_service_name()
{
return 'googleplus';
return 'profilefields.type.googleplus';
}
/**
@@ -55,12 +55,4 @@ class type_googleplus extends type_string
return $field_value;
}
/**
* {@inheritDoc}
*/
public function get_template_filename()
{
return 'profilefields/string.html';
}
}