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

21 lines
554 B
PHP
Raw Normal View History

<?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());
?>