drupal/export

12 lines
216 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, $module) {
global $REQUEST_URI;
module_execute($name, "export", explode("/", strrchr($REQUEST_URI, "/export")));
2000-12-25 21:59:07 +00:00
}
module_iterate("export");
2000-12-25 21:59:07 +00:00
?>