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

include_once "includes/common.inc";

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

module_iterate("export");

?>