/var/www/(Del)hsihk.com/wp-content/plugins/backupbuddy/controllers/ajax/refresh_site_objects.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php    
if ( ! is_admin() ) { die( 'Access denied.' ); }

// Server info page site objects file count update.

/*    refresh_site_objects()
*    
*    Server info page site objects file count refresh. Echos out the new site file count (pretty version).
*    
*    @return        null
*/


$site_size backupbuddy_core::get_site_size(); // array( site_size, site_size_sans_exclusions ).

echo $site_size[2];

die();