streams/mod/view.php

16 lines
316 B
PHP
Raw Normal View History

<?php
/**
* load view/theme/$current_theme/style.php with friendica contex
*/
function view_init($a){
2013-01-08 22:24:32 +00:00
header("Content-Type: text/css");
2013-01-08 22:24:32 +00:00
$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();
}