<?php /** * Elgg demo custom index page plugin * */ register_elgg_event_handler('init', 'system', 'custom_index_init'); function custom_index_init() { // Extend system CSS with our own styles elgg_extend_view('css/screen', 'custom_index/css'); // Replace the default index page register_plugin_hook('index', 'system', 'custom_index'); } function custom_index() { if (!include_once(dirname(__FILE__) . "/index.php")) { return false; } // return true to signify that we have handled the front page return true; }