DataObjects/Core_event_audit.php
[Pman.Core] / DataObjects / Person.php
index ae60dca..08f805f 100644 (file)
@@ -115,9 +115,7 @@ class Pman_Core_DataObjects_Person extends DB_DataObject
     function toEventString() 
     {
         return empty($this->name) ? $this->email : $this->name;
-    }
-    
-    /// check config 'auth_comptype' to see if we restrict access ..
+    } 
     function verifyAuth()
     { 
         $ff= HTML_FlexyFramework::get();
@@ -127,7 +125,8 @@ class Pman_Core_DataObjects_Person extends DB_DataObject
         return true;
         
     }    
-    
+   
+   
     //   ---------------- authentication / passwords and keys stuff  ----------------
     function isAuth()
     {
@@ -339,10 +338,14 @@ class Pman_Core_DataObjects_Person extends DB_DataObject
     {
          //DB_DataObject::debugLevel(1);
         // find out all the groups they are a member of.. + Default..
+        
+        // ------ INIITIALIZE IF NO GROUPS ARE SET UP.
+        
         $g = DB_DataObject::Factory('Group_Rights');
         if (!$g->count()) {
             $g->genDefault();
         }
+        
         if ($this->id < 0) {
             return $g->adminRights(); // system is not set up - so they get full rights.
         }
@@ -360,8 +363,11 @@ class Pman_Core_DataObjects_Person extends DB_DataObject
             
         }
         
+        // ------ STANDARD PERMISSION HANDLING.
+        
         $g = DB_DataObject::Factory('Group_Members');
         $grps = $g->listGroupMembership($this);
+       // print_r($grps);
         $isAdmin = $g->inAdmin;
         //echo '<PRE>'; print_r($grps);var_dump($isAdmin);
         // the load all the perms for those groups, and add them all together..