if plugin method get_css(), embed plugin-specific css to main UI

master
Andrew Dolgov 11 years ago
parent 9955a13462
commit 9a2885da17

@ -62,8 +62,15 @@
<?php print_user_stylesheet($link) ?>
<script type="text/javascript">
</script>
<style type="text/css">
<?php
foreach ($pluginhost->get_plugins() as $n => $p) {
if (method_exists($p, "get_css")) {
echo $p->get_css();
}
}
?>
</style>
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>

Loading…
Cancel
Save