mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/12730] Incorrect indentation for type_googleplus
PHPBB3-12730
This commit is contained in:
parent
0e04748d7f
commit
d15706bff5
1 changed files with 21 additions and 21 deletions
|
@ -15,28 +15,28 @@ namespace phpbb\profilefields\type;
|
||||||
|
|
||||||
class type_googleplus extends type_string
|
class type_googleplus extends type_string
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
public function get_name_short()
|
public function get_name_short()
|
||||||
{
|
{
|
||||||
return 'googleplus';
|
return 'googleplus';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
public function get_default_option_values()
|
public function get_default_option_values()
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
'field_length' => 20,
|
'field_length' => 20,
|
||||||
'field_minlen' => 3,
|
'field_minlen' => 3,
|
||||||
'field_maxlen' => '',
|
'field_maxlen' => '',
|
||||||
'field_validation' => '[\w]+',
|
'field_validation' => '[\w]+',
|
||||||
'field_novalue' => '',
|
'field_novalue' => '',
|
||||||
'field_default_value' => '',
|
'field_default_value' => '',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
|
|
Loading…
Add table
Reference in a new issue