friendica/mod/view.php

28 lines
519 B
PHP
Raw Normal View History

<?php
2019-01-07 18:26:46 +01:00
use Friendica\App;
use Friendica\Util\Strings;
2019-01-07 18:26:46 +01:00
/**
2019-01-07 18:24:01 +01:00
* load view/theme/$current_theme/style.php with friendica context
2019-01-07 07:07:42 +01:00
*
* @param App $a
*/
2019-01-07 18:26:46 +01:00
function view_init(App $a)
{
header("Content-Type: text/css");
if ($a->argc == 4) {
$theme = $a->argv[2];
$theme = Strings::sanitizeFilePathItem($theme);
2019-01-22 13:44:49 +01:00
// set the path for later use in the theme styles
2019-01-22 10:36:42 +01:00
$THEMEPATH = "view/theme/$theme";
if (file_exists("view/theme/$theme/style.php")) {
require_once("view/theme/$theme/style.php");
}
}
2018-12-26 06:40:12 +01:00
exit();
}