PluginProbe
Webling / 3.0.3
Webling v3.0.3
trunk 2.0 3.0 3.0.1 3.0.2 3.0.3 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.3.0 3.4.0 3.4.1 3.5.0 3.6.0 3.7.0 3.7.1 3.7.2 3.7.3 3.8.0 3.9.0 3.9.1 3.9.2
webling / src / setup / deactivate.php

deactivate.php in Webling 3.0.3, at src/setup/deactivate.php

11 lines 193 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 function webling_plugin_deactivate() {
4 // clear cache when deactivating plugin
5 try {
6 WeblingApiHelper::Instance()->clearCache();
7 } catch(Exception $e) {
8 // ignore any errors
9 }
10 }
11