Skip to content
Snippets Groups Projects
Forked from project / drupal
44369 commits behind, 102 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
module.php 190 B
<?php

include_once "includes/common.inc";

if (module_hook($mod, "page")) {
  page_header();
  module_invoke($mod, "page");
  page_footer();
}
else {
  header("Location: index.php");
}

?>