Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 103 |
- |
1 |
<?php
|
|
|
2 |
include_once("includes/sp-load.php");
|
|
|
3 |
include_once(SP_CTRLPATH."/themes.ctrl.php");
|
|
|
4 |
$controller = New ThemesController();
|
|
|
5 |
|
|
|
6 |
header("Content-type: text/css; charset: UTF-8");
|
|
|
7 |
echo '@CHARSET "UTF-8";';
|
|
|
8 |
|
|
|
9 |
$custComp = $controller->createComponent("Customizer_Helper");
|
|
|
10 |
$themeInfo = $controller->__getActiveTheme();
|
|
|
11 |
$style = $custComp->getThemeCustomStyles($themeInfo['id'], 'css');
|
|
|
12 |
echo $style;
|
|
|
13 |
?>
|