PluginProbe
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel / v1.3
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel vv1.3
1.7.1 1.7.0 1.6.0 1.5.2 trunk 0.1 0.2.0 0.2.1 0.3 0.3.1 0.3.2 0.3.3 0.3.4 0.4 0.4.1 0.4.2 0.4.3 1.0 1.1 1.2 1.3.1 1.4.0 1.4.1 1.5.0 1.5.1 All 26 releases
← All changes | includes/FlyApi.php +2 -1 1.1v1.3 View file →
@@ -19,13 +19,14 @@
19 19 * @param string $action
20 20 *
21 21 * @return array|false
22 22 */
23 - public function cache_toggle( $action = 'enable' ) {
23 + public function cache_toggle( $action = 'enable', $type = 'fastcgi' ) {
24 24 return $this->post(
25 25 '/cache-toggle',
26 26 [
27 27 'action' => $action,
28 + 'type' => $type,
28 29 ]
29 30 );
30 31 }
31 32