view views/Extractapp/ExportTabDelimited.php @ 92:f5b0cd4f25b2 extractapp

new: explore table for using on LGMap
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 14 Sep 2015 14:39:03 +0200
parents
children b0cecc104639
line wrap: on
line source

<?php
/*
 * ExportTabDelimited.php
 * This file is part of Extraction-interface.
 *
 * Extraction-interface is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Extraction-interface is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Extraction-interface.  If not, see <http://www.gnu.org/licenses/>.
*/
/*! \file 
 * This is the view for ExportTabDelimited.
*/

// --- initialize ---
$outputTableArray = $viewmodel['outputTableArray'];
$bookId = $viewmodel['bookId'];
$sectionid = $viewmodel['section_id'];
$bookName = $viewmodel['bookName'];
$sectionName = $viewmodel['sectionName'];
$bookMeta = $viewmodel['bookMeta'];



$count=1;
	foreach ( $outputTableArray as $trIndex =>$trValue ) {
		
		if ( $trIndex==0 ) {
			echo "#\t";
			echo "Book ID\t";
			echo "Section ID\t";
			echo "Name\t";
			echo "部\t";
			echo "Address\t";
			echo "Longitude\t";	// longitude
			echo "Latitude\t";	// latitude
		} else {
			echo $count++."\t";
			echo $bookId."\t";
			echo $sectionid."\t";
			echo $bookName."\t";
			echo $sectionName."\t";
			echo $bookMeta->place_name."\t";
			echo $bookMeta->x."\t";
			echo $bookMeta->y."\t";
		}
		if ( isset( $trValue["page"] ) ) {
			echo $trValue["page"]."\t";
		} else {
			echo "\t";
		}
		
		foreach ( $outputTableArray[0][0] as $index => $value ) {
			if ( $index == "time" ) {
				if ( isset( $trValue[0][$index] ) ) {
					echo $trValue[0][$index]."\t";
					echo $trValue[0][$index]."\t";
				} else {
					echo "\t";
					echo "\t";
				}
			} else {
				if ( isset( $trValue[0][$index] ) ) {
					echo $trValue[0][$index]."\t";
				} else {
					echo "\t";
				}
			}
		}
		if ( isset( $trValue["other"] ) ) {
			echo $trValue["other"]."\t";
		} else {
			echo "\t";
		}
		if ( isset( $trValue["full"] ) ) {
			echo $trValue["full"]."\t";
		} else {
			echo "\t";
		}
		echo "\n";
	}

?>