Notify.php
authorAlan Knowles <alan@roojs.com>
Tue, 25 Apr 2017 04:17:30 +0000 (12:17 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 25 Apr 2017 04:17:30 +0000 (12:17 +0800)
Notify.php

index 14359d6..0880a0d 100644 (file)
@@ -279,14 +279,16 @@ class Pman_Core_Notify extends Pman
     {
         // this should check each module for 'GenerateNotifications.php' class..
         //and run it if found..
+        $ff = HTML_FlexyFramework::get();
        
-     
+        $disabled = explode(',', $ff->disable);
+
         $modules = array_reverse($this->modulesList());
         
         // move 'project' one to the end...
         
         foreach ($modules as $module){
-            if(in_array($module, $this->disabled)){
+            if(in_array($module, $disabled)){
                 continue;
             }
             $file = $this->rootDir. "/Pman/$module/GenerateNotifications.php";