22 lines
No EOL
453 B
PHP
22 lines
No EOL
453 B
PHP
<?php
|
|
/**
|
|
* This file is a part of MyWebSQL package
|
|
*
|
|
* @file: modules/export.php
|
|
* @author Samnan ur Rehman
|
|
* @copyright (c) 2008-2014 Samnan ur Rehman
|
|
* @web http://mywebsql.net
|
|
* @license http://mywebsql.net/license
|
|
*/
|
|
|
|
function processRequest(&$db) {
|
|
$object_list = $db->getObjectList();
|
|
|
|
$replace = array();
|
|
|
|
$folder = $db->name();
|
|
|
|
echo view( array($folder.'/export', 'export'), $replace, $object_list);
|
|
}
|
|
|
|
?>
|