DataObjects/ProjectDirectory.php
[Pman.Core] / DataObjects / ProjectDirectory.php
index fdf8434..6930160 100644 (file)
@@ -69,6 +69,13 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject
     function projects($au)
     {
         $c = clone ($this);
+        if (empty($au)) {
+            $p = DB_DataObject::Factory('Projects');
+            $p->get('code',  '*PUBLIC');
+            return array($p->id);          
+            
+        } 
+        
         if (is_array($au)) {
             $c->whereAddIn('person_id', $au, 'int');
         } else {
@@ -85,9 +92,9 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject
     {
         $c = clone ($this);
         if (is_array($pr)) {
-            $c->whereAddIn('project_id', $au, 'int');
+            $c->whereAddIn('project_id', $pr, 'int');
         } else {
-            $c->project_id = $au->id;
+            $c->project_id = $pr->id;
         }
         return $c->fetchAll('person_id');
         
@@ -105,7 +112,7 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject
         
         if ($this->id && 
             ($this->project_id == $roo->old->project_id) &&
-            ($this->person_id == $roo->old->person_id) &&
+            ($this->person_id  == $roo->old->person_id) &&
             ($this->company_id == $roo->old->company_id) )
         {
             return true;
@@ -114,7 +121,7 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject
         $xx = DB_Dataobject::factory('ProjectDirectory');
         $xx->setFrom(array(
             'project_id' => $this->project_id,
-            'person_id' => $this->person_id,
+            'person_id'  => $this->person_id,
             'company_id' => $this->company_id,
         ));