<?php
/*************************************************************************/
/* ROLLER CMS - ADVANCED PORTAL MANAGEMENT SYSTEM */
/* ============================================ */
/* */
/* Copyright (c) 2005 by Federico Campoli (hide@address.com) */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/*************************************************************************/
include($_SERVER["DOCUMENT_ROOT"].'/common_files/template/main_app_header_admin.inc.php');
// Lettura contenuti directory admin
if (is_dir($folder_admin_srv))
{
if ($dir = opendir($folder_admin_srv))
{
while (($file = readdir($dir)) !== false)
{
if ($file!='.' && $file!='..' && $file!='main' && filetype($folder_admin_srv . $file)!="file" )
echo '<a href="'.$folder_admin.$file.'">'.$file.'</a> <br>';
}
closedir($dir);
}
}
include($_SERVER["DOCUMENT_ROOT"].'/common_files/template/main_app_footer.inc.php');
?>