Skip to content

Instantly share code, notes, and snippets.

@FluxCoder
Last active March 10, 2019 18:12
Show Gist options
  • Save FluxCoder/96373065044f499a96d8f443d651ba34 to your computer and use it in GitHub Desktop.
Save FluxCoder/96373065044f499a96d8f443d651ba34 to your computer and use it in GitHub Desktop.
Index.php - Used for hooks project
<?php
// Main index.php, could be combined with router to add hooks to entire site.
// https://jroffey.me
$x_events = array();
global $x_events;
//Include App Class & create variable.
require("app.class.php");
$app = new app();
//Run header_info hook [Example]
$app->RunHooks('header_info');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment