I create a custom theme with name "uni" in addons/default/themes. Ok this work because i can see it in CP.
Next i create a custom module with code :
class Server extends Public_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->template->title($this->module_details['name'])->set_theme('uni')->build('test');
}
}
But when i browser this module, theme still is active theme on CP, so set_theme in module controller does not work.
Any way to make module using custom theme instead of change the active theme in CP?