www/includes/users.php

16 lines
448 B
PHP
Raw Normal View History

2019-07-07 01:39:54 +00:00
<?php
print "<!-- Begin autogen userdir list -->";
print "<ul style='list-style: none; margin-left: -40px;'>";
foreach (glob("/home/*") as $user):
2021-06-17 14:49:58 +00:00
if (is_dir($user . "/public_html"))
if (!file_exists($user . "/public_html/coming_soon"))
2021-06-18 08:50:31 +00:00
if (count(scandir($user."/public_html")) != 2)
{
$user = basename($user);
print"<li><a href='$site_root/~$user/'>~$user</a></li>";
}
2019-07-07 01:39:54 +00:00
endforeach;
2019-07-07 01:47:47 +00:00
print "</ul></div>
<!-- End Autgen userdir list -->";
2019-07-07 01:39:54 +00:00
?>