X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fhooks.inc;h=c279b4afc4371ded9621aa6548884168a729d8bc;hb=7bcc984e9831707a3f6f3af23095faec95489645;hp=d03eff1a7f382826f1524056b7355e4fb808f102;hpb=f58d513d1bc5c16eab7a0364738aed7ced20a4e6;p=fa-stable.git diff --git a/includes/hooks.inc b/includes/hooks.inc index d03eff1a..c279b4af 100644 --- a/includes/hooks.inc +++ b/includes/hooks.inc @@ -135,6 +135,34 @@ class hooks { { return true; } + /* + This method is called after module install. + */ + function install_extension($check_only=true) + { + return true; + } + /* + This method is called after module uninstall. + */ + function uninstall_extension($check_only=true) + { + return true; + } + /* + This method is called on extension activation for company. + */ + function activate_extension($company, $check_only=true) + { + return true; + } + /* + This method is called when extension is deactivated for company. + */ + function deactivate_extension($company, $check_only=true) + { + return true; + } } // // include all extensions hook files.