diff views/Extractapp/ExportTable.php @ 94:b0cecc104639 extractapp

new: modified tags can work on tagged text
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 09 Nov 2015 12:00:24 +0100
parents 3e11a9c5a672
children e6b516fa7b60
line wrap: on
line diff
--- a/views/Extractapp/ExportTable.php	Fri Oct 02 12:18:34 2015 +0200
+++ b/views/Extractapp/ExportTable.php	Mon Nov 09 12:00:24 2015 +0100
@@ -53,6 +53,8 @@
 			echo "<td>方志地點</td>";
 			echo "<td>經度(x)</td>";	// longitude
 			echo "<td>緯度(y)</td>";	// latitude
+			echo "<td>Description</td>";	// description
+			
 		} else {
 			echo "<td>".$count++."</td>";
 			echo "<td>".$bookId."</td>";
@@ -62,6 +64,8 @@
 			echo "<td>".$bookMeta->place_name."</td>";
 			echo "<td>".$bookMeta->x."</td>";
 			echo "<td>".$bookMeta->y."</td>";
+			echo "<td>".$bookName."_".$sectionName."</td>";	// description for LGMap
+			
 		}
 		if ( isset( $trValue["page"] ) ) {
 			echo "<td>".$trValue["page"]."</td>";
@@ -94,6 +98,8 @@
 				}
 			}
 		}
+		
+
 		if ( isset( $trValue["other"] ) ) {
 			echo "<td>".$trValue["other"]."</td>";
 		} else {
@@ -104,6 +110,8 @@
 		} else {
 			echo "<td>&nbsp;</td>";
 		}
+	
+
 		echo "</tr>";
 	}
 ?>