コード例 #1
0
ファイル: Data.php プロジェクト: hueyl77/fourwindsgear
 public static function isMaintenanceInstalled()
 {
     if (is_null(self::$_isMaintenanceInstalled)) {
         self::$_isMaintenanceInstalled = Mage::helper('core')->isModuleEnabled('ITwebexperts_Maintenance');
     }
     return self::$_isMaintenanceInstalled;
 }