1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php if ( ! is_admin() ) { die( 'Access denied.' ); } // Server info page icicle for GUI file listing. /* icicle() * * Builds and returns graphical directory size listing. Echos. * * @return null */
pb_backupbuddy::set_greedy_script_limits(); // Building the directory tree can take a bit.
$response = backupbuddy_core::build_icicle( ABSPATH, ABSPATH, '', -1 );
echo $response[0]; die();
|