diff --git a/_uninstall.php b/_uninstall.php index 9e22e41..e2028c6 100644 --- a/_uninstall.php +++ b/_uninstall.php @@ -10,34 +10,36 @@ # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html # -- END LICENSE BLOCK ------------------------------------ -if (!defined('DC_CONTEXT_ADMIN')){return;} +if (!defined('DC_CONTEXT_ADMIN')) { + return; +} $this->addUserAction( - /* type */ 'settings', - /* action */ 'delete_all', - /* ns */ 'kUtRL', - /* description */ __('delete all settings') + /* type */ 'settings', + /* action */ 'delete_all', + /* ns */ 'kUtRL', + /* description */ __('delete all settings') ); $this->addUserAction( - /* type */ 'tables', - /* action */ 'delete', - /* ns */ 'kutrl', - /* description */ __('delete table') + /* type */ 'tables', + /* action */ 'delete', + /* ns */ 'kutrl', + /* description */ __('delete table') ); $this->addUserAction( - /* type */ 'plugins', - /* action */ 'delete', - /* ns */ 'kUtRL', - /* description */ __('delete plugin files') + /* type */ 'plugins', + /* action */ 'delete', + /* ns */ 'kUtRL', + /* description */ __('delete plugin files') ); $this->addUserAction( - /* type */ 'versions', - /* action */ 'delete', - /* ns */ 'kUtRL', - /* description */ __('delete the version number') + /* type */ 'versions', + /* action */ 'delete', + /* ns */ 'kUtRL', + /* description */ __('delete the version number') ); @@ -45,23 +47,22 @@ $this->addUserAction( # Keep table $this->addDirectAction( - /* type */ 'settings', - /* action */ 'delete_all', - /* ns */ 'kUtRL', - /* description */ sprintf(__('delete all %s settings'),'kUtRL') + /* type */ 'settings', + /* action */ 'delete_all', + /* ns */ 'kUtRL', + /* description */ sprintf(__('delete all %s settings'),'kUtRL') ); $this->addDirectAction( - /* type */ 'versions', - /* action */ 'delete', - /* ns */ 'kUtRL', - /* description */ sprintf(__('delete %s version number'),'kUtRL') + /* type */ 'versions', + /* action */ 'delete', + /* ns */ 'kUtRL', + /* description */ sprintf(__('delete %s version number'),'kUtRL') ); $this->addDirectAction( - /* type */ 'plugins', - /* action */ 'delete', - /* ns */ 'kUtRL', - /* description */ sprintf(__('delete %s plugin files'),'kUtRL') -); -?> \ No newline at end of file + /* type */ 'plugins', + /* action */ 'delete', + /* ns */ 'kUtRL', + /* description */ sprintf(__('delete %s plugin files'),'kUtRL') +); \ No newline at end of file