PHP code example of trendsoft / themes
1. Go to this page and download the library: Download trendsoft/themes library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
trendsoft / themes example snippets
$theme = new Theme($config);
$theme->asset('app.js'); //获取资源
$theme->all(); //获取所有主题列表
$theme->path('assets/app.css'); //获取主题目录assets目录下的app.css文件
return array('active' => 'default', 'paths' => [ 'absolute' => $this->getAbsolute(), 'base' => 'themes', 'assets' => 'assets' ]);
$theme->all();
$theme->active('vue'); //or $theme->setCurrent('vue');