X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FProjectDirectory.php;h=eeb4668322d58057f9520913c7aa132ec66edf54;hb=1f540122de2c9fab4bd2d42775dd3831fe383192;hp=30f592ffe90ab27e2692f7d95415e8f046ea9c25;hpb=b8a1dc3b478d39bcaeb16337125dac7e0195740f;p=Pman.Core diff --git a/DataObjects/ProjectDirectory.php b/DataObjects/ProjectDirectory.php index 30f592ff..eeb46683 100644 --- a/DataObjects/ProjectDirectory.php +++ b/DataObjects/ProjectDirectory.php @@ -14,8 +14,6 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject public $project_id; // int(11) not_null public $person_id; // int(11) not_null public $ispm; // int(11) not_null - public $office_id; // int(11) - public $company_id; // int(11) public $role; // string(16) not_null @@ -61,10 +59,56 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject $this->office_id = $pe->office_id; $this->role = $pe->role; $this->insert(); + + } + /** + * project id's for a user. + * @param DB_DataObject_Core_Person|array - who, or list of people. + * @return array id's of the project they are a member of.. + */ + function projects($au) + { + if (empty($au)) { + $p = DB_DataObject::Factory('Projects'); + $p->get('code', '*PUBLIC'); + return array($p->id); + + } + $c = clone ($this); + + if (is_array($au)) { + $c->whereAddIn('person_id', $au, 'int'); + } else { + $c->person_id = $au->id; + } + $c->selectAdd(); + // people may have multiple roles for a project.. + $c->selectAdd("distinct({$this->tableName()}.project_id) as project_id"); + return $c->fetchAll('project_id'); + } + /** + * project id's for a user. + * @param DB_DataObject_Core_Person - who + * @return array id's of the project they are a member of.. + */ + function people($pr) + { + $c = clone ($this); + //echo '
';print_R($this);exit;
         
+        if (is_array($pr)) {
+            $c->whereAddIn('project_id', $pr, 'int');
+        } else {
+            $c->project_id = $pr->id;
+        }
+        $c->selectAdd();
+        $c->selectAdd("{$this->tableName()}.person_id as person_id");
+        return $c->fetchAll('person_id');
         
-        
+         
     }
+    
+    
     function checkPerm($lvl, $au) 
     {
         return $au->hasPerm('Documents.Project_Directory', $lvl);
@@ -75,7 +119,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;
@@ -84,7 +128,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,
         ));