Working project

This commit is contained in:
grez911
2017-02-04 14:34:24 +03:00
parent 053b3aca01
commit b3b392b354
293 changed files with 40557 additions and 0 deletions

36
index.php Normal file
View File

@@ -0,0 +1,36 @@
<?php
require("init.php");
if (!isset($_SESSION["auth"]) || $_SESSION["auth"] != 1)
{
// If not authenticated, then redirect to login page
header("Location: login.php");
exit();
}
$domain = $_SESSION["domain"];
// Are there any lists?
if ( count( glob("$lists_path/$domain/*") ) !== 0 )
{
// Get all folders and tranform into array
$lists = explode("\n", shell_exec("cd $lists_path/$domain; ls -1d */ | cut -f1 -d'/'"));
}
if ( isset($lists) )
{
// If the last string is empty then delete it
if ( end($lists) === "" )
{
array_pop($lists);
}
}
else
{
$lists = NULL;
}
$smarty->assign("lists", $lists);
$smarty->assign("domain", $domain);
$smarty->display("index.tpl");
?>