streams/Code/Module/View.php
2022-02-15 20:08:28 -08:00

24 lines
467 B
PHP

<?php
namespace Code\Module;
use Code\Web\Controller;
/**
* load view/theme/$current_theme/style.php with Hubzilla context
*/
class View extends Controller
{
public function init()
{
header("Content-Type: text/css");
$theme = argv(2);
$THEMEPATH = "view/theme/$theme";
if (file_exists("view/theme/$theme/php/style.php")) {
require_once("view/theme/$theme/php/style.php");
}
killme();
}
}