view views/Extractapp/ExportTable.php @ 78:960ba96efce1 extractapp

Update: click to popup remove-tag-window; select to popup tag-window
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 20 Apr 2015 15:44:54 +0200
parents 97c1e5102a22
children f1f849d31272
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>&nbsp;</td>";
		}
		/*
		foreach ( $outputTableArray[0][1] as $index => $value ) {
			if ( isset( $trValue[1][$index] ) ) {
				echo "<td>".$trValue[1][$index]."</td>";
			} else {
				echo "<td>&nbsp;</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>&nbsp;</td>";
					echo "<td>&nbsp;</td>";
				}
			} else {
				if ( isset( $trValue[0][$index] ) ) {
					echo "<td>".$trValue[0][$index]."</td>";
				} else {
					echo "<td>&nbsp;</td>";
				}
			}
		}
		if ( isset( $trValue["other"] ) ) {
			echo "<td>".$trValue["other"]."</td>";
		} else {
			echo "<td>&nbsp;</td>";
		}
		if ( isset( $trValue["full"] ) ) {
			echo "<td>".$trValue["full"]."</td>";
		} else {
			echo "<td>&nbsp;</td>";
		}
		echo "</tr>";
	}
?>
</table>
</body>
</html>