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-plugins.php
<?php class WP_Super_Cache_Rest_Get_Plugins extends WP_REST_Controller { /** * GET a list of plugins through the /plugins/ endpoint * * @param WP_REST_Request $request Full data about the request. * @return WP_Error|WP_REST_Response */ public function callback( $request ) { $list = wpsc_get_plugin_list(); return rest_ensure_response( $list ); } }
Save Changes
Rename File
Rename