summaryrefslogtreecommitdiff
path: root/export
blob: ba89b23bae6765ab931287189b9e9be0b47429e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?

include "includes/common.inc";

function export($name, $module) {
  global $REQUEST_URI;
  module_execute($name, "export", explode("/", $REQUEST_URI));
}

module_iterate("export");

?>