aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/template/asset.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/template/asset.php')
-rw-r--r--phpBB/phpbb/template/asset.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/phpBB/phpbb/template/asset.php b/phpBB/phpbb/template/asset.php
index 2b10dd8848..27564bf347 100644
--- a/phpBB/phpbb/template/asset.php
+++ b/phpBB/phpbb/template/asset.php
@@ -7,6 +7,8 @@
*
*/
+namespace phpbb\template;
+
/**
* @ignore
*/
@@ -15,21 +17,21 @@ if (!defined('IN_PHPBB'))
exit;
}
-class phpbb_template_asset
+class asset
{
protected $components = array();
- /** @var phpbb_filesystem **/
- protected $phpbb_filesystem;
+ /** @var \phpbb\path_helper **/
+ protected $path_helper;
/**
* Constructor
*
* @param string $url URL
*/
- public function __construct($url, phpbb_filesystem $phpbb_filesystem)
+ public function __construct($url, \phpbb\path_helper $path_helper)
{
- $this->phpbb_filesystem = $phpbb_filesystem;
+ $this->path_helper = $path_helper;
$this->set_url($url);
}
@@ -117,7 +119,7 @@ class phpbb_template_asset
*/
public function get_url()
{
- return $this->phpbb_filesystem->update_web_root_path($this->join_url($this->components));
+ return $this->path_helper->update_web_root_path($this->join_url($this->components));
}
/**