stripit/index.php
2008-01-31 21:24:09 +00:00

21 lines
372 B
PHP

<?php
/**
* Strip-It HTML index
*
* @author Johann "nojhan" Dréo <nojhan@gmail.com>
* @license http://www.gnu.org/licenses/gpl.html GPL
* @copyright 2007 Johann Dréo
*
* @package stripit
*/
set_include_path(get_include_path() . PATH_SEPARATOR . getcwd());
require_once 'strip_manager.php';
// instanciation and ouput
$ctl = new strip_manager;
$ctl->generate();
?>