drupal/module.php

16 lines
198 B
PHP
Raw Normal View History

<?php
// $Id$
2000-12-14 14:20:06 +00:00
include_once "includes/common.inc";
if (module_hook($mod, "page")) {
page_header();
module_invoke($mod, "page");
page_footer();
}
else {
header("Location: index.php");
}
?>