X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Notify.php;h=fd582092af5a14fa15dae313ff2f70dba6e54320;hp=14359d639028ba752097de2501c947a08c841e10;hb=1524f8b36295809a3eedd6da3c6494f8aa0d86f5;hpb=4329739995dfdeb8094e181a549e18519a0bf226 diff --git a/Notify.php b/Notify.php index 14359d63..fd582092 100644 --- a/Notify.php +++ b/Notify.php @@ -145,7 +145,7 @@ class Pman_Core_Notify extends Pman } - function get($r,$opts) + function get($r,$opts=array()) { $this->parseArgs($opts); @@ -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";