Started with Report Tables (ExtJs)

This commit is contained in:
safan
2010-12-30 09:38:25 +00:00
parent b36c575db7
commit 84c77ee443
4 changed files with 334 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
<?php
try
{
G::LoadClass('processMap');
$oProcessMap = new processMap(new DBConnection);
if ( isset($_GET['pid']) )
{
$rows = ExtreportTablesList($_GET['pid']);
}
$result['totalCount'] = count($rows);
$result['data'] = $rows;
print json_encode( $result ) ;
}
catch ( Exception $e ) {
print json_encode ( $e->getMessage() );
}
?>