12 lines
173 B
PHP
12 lines
173 B
PHP
|
<?php
|
||
|
namespace App\Helpers;
|
||
|
|
||
|
class theme_helper {
|
||
|
|
||
|
public function get_theme_uri($theme_name)
|
||
|
{
|
||
|
|
||
|
|
||
|
return 'http://localhost/themes/'.$theme_name.'/assets/img/';
|
||
|
}
|
||
|
}
|