git-svn-id: file:///home/shish/svn/shimmie2/trunk@304 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			21 lines
		
	
	
		
			537 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			537 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| class LoadExtData extends Extension {
 | |
| 	public function receive_event($event) {
 | |
| 		if(is_a($event, 'PageRequestEvent')) {
 | |
| 			global $page, $config;
 | |
| 
 | |
| 			$data_href = get_base_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());
 | |
| ?>
 |