Mercurial > hg > extraction-interface
view views/Extractapp/ExportTable.php @ 77:97c1e5102a22 extractapp
New: export table for a file from LGService
author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
---|---|
date | Thu, 16 Apr 2015 14:53:22 +0200 |
parents | 886f43b26ee2 |
children | 960ba96efce1 |
line wrap: on
line source
<?php /*! \file * This is the view for ExportTable. * It shows a html table with each row as a topic object and each column as a tag/attribute. */ // --- initialize --- $outputTableArray = $viewmodel['outputTableArray']; $bookId = $viewmodel['bookId']; $sectionid = $viewmodel['section_id']; $bookName = $viewmodel['bookName']; $sectionName = $viewmodel['sectionName']; ?> <html> <head> <title></title> </head> <body> <table width="100%" border="1" id="tableMain"> <?php $count=1; foreach ( $outputTableArray as $trIndex =>$trValue ) { echo "<tr>"; if ( $trIndex==0 ) { echo "<td>#</td>"; echo "<td>Book ID</td>"; echo "<td>Section ID</td>"; echo "<td>方志</td>"; echo "<td>部</td>"; } else { echo "<td>".$count++."</td>"; echo "<td>".$bookId."</td>"; echo "<td>".$sectionid."</td>"; echo "<td>".$bookName."</td>"; echo "<td>".$sectionName."</td>"; } if ( isset( $trValue["page"] ) ) { echo "<td>".$trValue["page"]."</td>"; } else { echo "<td> </td>"; } /* foreach ( $outputTableArray[0][1] as $index => $value ) { if ( isset( $trValue[1][$index] ) ) { echo "<td>".$trValue[1][$index]."</td>"; } else { echo "<td> </td>"; } } */ foreach ( $outputTableArray[0][0] as $index => $value ) { if ( $index == "time" ) { if ( isset( $trValue[0][$index] ) ) { echo "<td>".$trValue[0][$index]."</td>"; echo "<td>".$trValue[0][$index]."</td>"; } else { echo "<td> </td>"; echo "<td> </td>"; } } else { if ( isset( $trValue[0][$index] ) ) { echo "<td>".$trValue[0][$index]."</td>"; } else { echo "<td> </td>"; } } } if ( isset( $trValue["other"] ) ) { echo "<td>".$trValue["other"]."</td>"; } else { echo "<td> </td>"; } if ( isset( $trValue["full"] ) ) { echo "<td>".$trValue["full"]."</td>"; } else { echo "<td> </td>"; } echo "</tr>"; } ?> </table> </body> </html>