blob: 50e402ea4eda5aca3c3cd80657f5390ca8cc5033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
include_once "includes/common.inc";
function export($name) {
global $REQUEST_URI;
module_invoke($name, "export", explode("/", $REQUEST_URI));
}
module_iterate("export");
?>
|