streams/mod/view.php

18 lines
348 B
PHP
Raw Normal View History

<?php
/**
* load view/theme/$current_theme/style.php with friendica contex
*/
function view_init($a){
header("Content-Type: text/css");
if ($a->argc == 4){
$theme = $a->argv[2];
$THEMEPATH = "view/theme/$theme";
2012-08-07 20:32:19 +00:00
if(file_exists("view/theme/$theme/php/style.php"))
require_once("view/theme/$theme/php/style.php");
}
killme();
}