File Editor
Directories:
.. (Back)
Files:
class.wp-super-cache-rest-delete-cache.php
class.wp-super-cache-rest-get-cache.php
class.wp-super-cache-rest-get-plugins.php
class.wp-super-cache-rest-get-settings.php
class.wp-super-cache-rest-get-stats.php
class.wp-super-cache-rest-get-status.php
class.wp-super-cache-rest-preload.php
class.wp-super-cache-rest-test-cache.php
class.wp-super-cache-rest-update-plugins.php
class.wp-super-cache-rest-update-settings.php
class.wp-super-cache-settings-map.php
load.php
Create New File
Create
Edit File: class.wp-super-cache-rest-get-stats.php
<?php class WP_Super_Cache_Rest_Get_Stats extends WP_REST_Controller { /** * Get the cache stats for the site. * * @param WP_REST_Request $request Full data about the request. * @return WP_Error|WP_REST_Response */ public function callback( $request ) { global $valid_nonce; $_GET[ 'listfiles' ] = 1; $valid_nonce = true; return rest_ensure_response( wp_cache_regenerate_cache_file_stats() ); } }
Save Changes
Rename File
Rename