Пример #1
0
 /**
  * 返回所有组的对象集
  *
  * @return ORM_Admin_MemberGroup_Result
  */
 public function groups()
 {
     if (null !== $this->_groups) {
         return $this->_groups;
     }
     $orm_group = new ORM_Admin_MemberGroup_Finder();
     $this->_groups = $orm_group->get_all_groups_by_member($this);
     return $this->_groups;
 }