view develop/views/Extractapp/ExportTable.php @ 36:e078e1500cc2 extractapp

config for localgazetteers-dev
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Fri, 06 Mar 2015 14:13:18 +0100
parents
children
line wrap: on
line source

<?php
// --- 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>