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: application/javascript');
|
|
|
7 |
|
|
|
8 |
$custComp = $controller->createComponent("Customizer_Helper");
|
|
|
9 |
$themeInfo = $controller->__getActiveTheme();
|
|
|
10 |
$style = $custComp->getThemeCustomStyles($themeInfo['id'], 'js');
|
|
|
11 |
echo $style;
|
|
|
12 |
?>
|