Example #1
0
 public function getActorGroups()
 {
     if ($this->_actorGroups === null) {
         $ag = new Default_Model_ActorGroupMembers();
         $ag->filter->actorid = $this->getGUID();
         $ag->refresh();
         if (count($ag->items) > 0) {
             $this->_actorGroups = $ag->items;
         } else {
             $this->_actorGroups = array();
         }
     }
     return $this->_actorGroups;
 }