This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/core/ext/load_ext_data.ext.php
shish e2e7d29b66 scripts moved to an extension
git-svn-id: file:///home/shish/svn/shimmie2/trunk@81 7f39781d-f577-437e-ae19-be835c7a54ca
2007-05-08 21:18:31 +00:00

20 lines
554 B
PHP

<?php
class LoadExtData extends Extension {
public function receive_event($event) {
if(is_a($event, 'PageRequestEvent')) {
global $page, $config;
$data_href = $config->get_string("data_href");
foreach(glob("ext/*/style.css") as $css_file) {
$page->add_header("<link rel='stylesheet' href='$data_href/$css_file' type='text/css'>");
}
foreach(glob("ext/*/script.js") as $js_file) {
$page->add_header("<script src='$data_href/$js_file' type='text/javascript'></script>");
}
}
}
}
add_event_listener(new LoadExtData());
?>