summaryrefslogtreecommitdiff
path: root/export
blob: bf3b62ff19f62f70392ffdf43baada340d352b86 (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("/", strrchr($REQUEST_URI, "/export")));
}

module_iterate("export");

?>