. */ /* */ /*************************************************************************************/ namespace TheliaDebugBar; use Thelia\Module\BaseModule; class TheliaDebugBar extends BaseModule { /** * YOU HAVE TO IMPLEMENT HERE ABSTRACT METHODD FROM BaseModule Class * Like install and destroy */ public function afterActivation() { } public function install() { // TODO: Implement install() method. } public function destroy() { // TODO: Implement destroy() method. } public function getCode() { return 'TheliaDebugBar'; } }