123456789101112131415161718192021222324252627282930 |
- <?php
- elgg_register_event_handler('init', 'system', 'custom_index_hydra_init');
- function custom_index_hydra_init() {
-
- elgg_extend_view('css/elgg', 'custom_index_hydra/css');
-
- elgg_register_page_handler('', 'custom_index_hydra');
- }
- function custom_index_hydra() {
- if (!include_once(dirname(__FILE__) . "/index.php")) {
- return false;
- }
- return true;
- }
|