/**
  * Return module is enabled or disabled
  *
  * @return boolean
  */
 public static function isEnabled($module_name)
 {
     if (!Configuration::get(self::CONST_PREFIX . 'ENABLED')) {
         return false;
     }
     return parent::isEnabled($module_name);
 }