view views/Extractapp/EditWordlist.php @ 81:f1f849d31272 extractapp

book_id as string
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Thu, 23 Apr 2015 14:58:27 +0200
parents 97c1e5102a22
children 3bca624e4ac2
line wrap: on
line source

<?php
/*
 * EditWordlist.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 EditWordlist.
* It shows the wordlist and allows user to view or edit it.
* User can create new wordlist here.
*/

// --- initialize ---
$wordlistArray = $viewmodel['wordlistArray'];
?>

<html>
<head>
<title></title>
<style>
dynasty
{
	color:red;
}
nianhao
{
	color:blue;
}
name
{
	color:orange;
}
#editable-area {
	line-height:160%;
	letter-spacing:1.5px;
	font-size:21px;
}
</style>
</head>
<body>

<table width="98%" border="1">
	<tr>
		<td width="20%" valign="top">
			<?php 
			foreach ( $wordlistArray as $nameId => $nameValue ) {
				echo "&nbsp;&nbsp;<a onclick=\"showListContent(".$nameId.")\" href=\"#\">".$nameValue."</a></br>";
			}
			?>
			<form action="javascript:void(0);">				
				<fieldset>
					<legend>Add List:</legend>
					List name: <input type="text" size="30" id="listNameText"><br>
					<button onclick="addNewList()">Add</button>
				</fieldset>
			</form>
		</td>
		<td width="60%">
			<div id="editable-area"></div>
		</td>
		<td width="20%" valign="top" id="button-area">&nbsp;</td>
	</tr>
</table>

</body>
</html>