forked from services/mlmmj-light-web-ecg
54 lines
971 B
PHP
54 lines
971 B
PHP
<?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);
|
|
}
|
|
|
|
$lists_new = [];
|
|
foreach($lists as $list)
|
|
{
|
|
if (!in_array($list, $_SESSION["array_lists_owned"]))
|
|
{
|
|
$lists_new[$list] = 0;
|
|
}
|
|
else
|
|
{
|
|
$lists_new[$list] = 1;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$lists = NULL;
|
|
}
|
|
|
|
$smarty->assign("headline", $headline);
|
|
$smarty->assign("lists", $lists_new);
|
|
$smarty->assign("domain", $domain);
|
|
$smarty->assign("username", $_SESSION["username"]);
|
|
$smarty->display("index.tpl");
|
|
|
|
?>
|