PluginProbe
ezCache / trunk
ezCache vtrunk
2.6.5 2.6.4 2.6.2 2.6.3 2.6.1 2.6.0 2.5.6 2.5.5 2.5.4 2.5.3 2.5.2 2.5.1 2.5 2.2.1 2.2.2 trunk 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.3 1.3.1 1.3.10 1.3.11 All 49 releases
ezcache / includes / Rest / DatabaseController.php

DatabaseController.php in ezCache trunk, at includes/Rest/DatabaseController.php

19 lines 298 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Upress\EzCache\Rest;
4
5 use Upress\EzCache\DatabaseOptimizer;
6
7 class DatabaseController {
8
9 /**
10 * Run the database cleanup.
11 */
12 public function clean() {
13 $optimizer = new DatabaseOptimizer();
14 $results = $optimizer->clean();
15
16 return wp_send_json_success( $results );
17 }
18 }
19