| Server IP : 68.178.202.69 / Your IP : 216.73.216.122 Web Server : Apache System : Linux 69.202.178.68.host.secureserver.net 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64 User : ikioworld ( 1005) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/ikioworld/www/ |
Upload File : |
<?php
class treeview {
private $files;
private $folder;
function __construct( $path ) {
$files = array();
if( file_exists( $path)) {
if( $path[ strlen( $path ) - 1 ] == '/' )
$this->folder = $path;
else
$this->folder = $path . '/';
$this->dir = opendir( $path );
while(( $file = readdir( $this->dir ) ) != false )
$this->files[] = $file;
closedir( $this->dir );
}
}
function create_tree( ) {
if( count( $this->files ) > 2 ) {
natcasesort( $this->files );
$list = '<ul class="filetree" style="display: none;">';
foreach( $this->files as $file ) {
if( file_exists( $this->folder . $file ) && $file != '.' && $file != '..' && is_dir( $this->folder . $file )) {
$list .= '<li class="folder collapsed"><a href="#" rel="' . htmlentities( $this->folder . $file ) . '/">' . htmlentities( $file ) . '</a></li>';
}
}
foreach( $this->files as $file ) {
if( file_exists( $this->folder . $file ) && $file != '.' && $file != '..' && !is_dir( $this->folder . $file )) {
$ext = preg_replace('/^.*\./', '', $file);
$list .= '<li class="file ext_' . $ext . ' "><span style="margin-left: 18px;" data-url="https://ikioledlighting.com/' . htmlentities( $this->folder . $file ) . '" class="cllick-download" rel="' . htmlentities( $this->folder . $file ) . '">' . htmlentities( $file ) . '</span> <p rel="https://ikioledlighting.com/' . htmlentities( $this->folder . $file ) . '" class="copy-url">COPY URL</p></li>';
}
}
$list .= '</ul>';
return $list;
}
}
}
$path = urldecode( $_REQUEST['dir'] );
$tree = new treeview( $path );
echo $tree->create_tree();
?>