drupal/export

12 lines
186 B
Plaintext
Raw Normal View History

<?php
2000-12-25 21:59:07 +00:00
include_once "includes/common.inc";
2000-12-25 21:59:07 +00:00
function export($name) {
global $REQUEST_URI;
module_invoke($name, "export", explode("/", $REQUEST_URI));
2000-12-25 21:59:07 +00:00
}
module_iterate("export");
2000-12-25 21:59:07 +00:00
?>