unch-cms/app/Helpers/theme_helper.php

12 lines
173 B
PHP
Raw Normal View History

2022-09-02 11:25:50 +07:00
<?php
namespace App\Helpers;
class theme_helper {
public function get_theme_uri($theme_name)
{
return 'http://localhost/themes/'.$theme_name.'/assets/img/';
}
}