From d80e6fe8ea62d4a3051a2feeadd2c3f8af5050a3 Mon Sep 17 00:00:00 2001 From: Alexis Degrugillier Date: Tue, 5 Jan 2021 12:25:55 -0500 Subject: [PATCH] Fix extension definition Before, extension was missing the definition of mandatory methods. At the moment, it's not a problem because the coding guidelines are not enforced by the code. But in the future, it will break. Now, extension have all mandatory method definitions. --- xExtension-Dilbert/extension.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/xExtension-Dilbert/extension.php b/xExtension-Dilbert/extension.php index 5ca5e95..d4d8cd8 100644 --- a/xExtension-Dilbert/extension.php +++ b/xExtension-Dilbert/extension.php @@ -12,6 +12,20 @@ */ class DilbertExtension extends Minz_Extension { + public function install() + { + return true; + } + + public function uninstall() + { + return true; + } + + public function handleConfigureAction() + { + } + /** * Initialize this extension */