Mercurial > hg > extraction-interface
view develop/index.php @ 8:da10158c6d0a
add toc_correction status in books table. On TOC correction list page, providing the status checking box for users.
author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
---|---|
date | Mon, 09 Feb 2015 12:28:09 +0100 |
parents | 63e08b98032f |
children | 54a235d43694 |
line wrap: on
line source
<html> <head> <title></title> <script src="../../js/jquery-1.10.2.min.js"></script> <!-- Bootstrap --> <!-- <link href="../../css/bootstrap.min.css" rel="stylesheet"> --> <script src="../../js/bootstrap.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>