uguu/index.php

24 lines
516 B
PHP
Raw Permalink Normal View History

2015-02-23 18:33:02 +01:00
<?php
2016-05-14 10:55:50 +02:00
//Loading configuration file
require_once "includes/config.php";
2015-02-23 18:33:02 +01:00
require_once "rain/rain.tpl.class.php";
raintpl::configure( 'path_replace', false);
raintpl::configure( 'tpl_dir', 'rain/template/');
raintpl::configure( 'cache_dir', 'rain/cache/' );
$tpl = new RainTPL;
$title = "Temp File Hosting";
$tpl->assign("title", $title);
2017-01-24 13:23:39 +01:00
$tpl->assign("site_name", CONFIG_SITE_NAME);
2015-02-23 18:33:02 +01:00
$tpl->draw("header");
$tpl->assign("retention_time", CONFIG_MAX_RETENTION_TEXT);
2017-02-20 02:16:56 +01:00
$tpl->draw("upload");
2015-02-23 18:33:02 +01:00
$tpl->draw("footer");
2016-05-14 10:55:50 +02:00
?>