view develop/index.php @ 7:0e9a7c69f22c

add editing records/log into TOC correction list page, more editing records could be shown on the TOC page
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Fri, 06 Feb 2015 09:44:17 +0100
parents 63e08b98032f
children da10158c6d0a
line wrap: on
line source


<html>
<head>
<title></title>

<script src="../../js/jquery-1.10.2.min.js"></script>
<script src="../../js/taggingtext.js"></script>

</head>
<body>
<?php

// configiration
include_once('config/Lib_mb_utf8.php');
include_once('config/config.php');

// require the general classes
require("classes/loader.php");
require("classes/basecontroller.php");
require("classes/basemodel.php");

// require the model classes
require("models/home.php");
require("models/extractapp.php");

// require the controller classes
require("controllers/home.php");
require("controllers/extractapp.php");


// create the controller and execute the action
$loader = new Loader($_GET, $_POST);

$controller = $loader->CreateController();
$controller->ExecuteAction();


?>

</body>

</html>