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

[ticket/15289] Update acp module

PHPBB3-15289
This commit is contained in:
Rubén Calvo
2017-07-27 17:48:58 +02:00
parent ba9f082bf4
commit 737a8f9f7d
10 changed files with 109 additions and 81 deletions

View File

@@ -15,6 +15,16 @@ namespace phpbb\storage\provider;
class local implements provider_interface
{
public function get_name()
{
return 'local';
}
public function get_class()
{
return get_class($this);
}
/**
* {@inheritdoc}
*/
@@ -28,7 +38,7 @@ class local implements provider_interface
*/
public function get_options()
{
return ['path'];
return ['path' => array('lang' => 'PATH', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => false)];
}
/**