Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1358 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1358 Rev 1359
Línea 158... Línea 158...
158
        $select = $this->sql->select(self::_TABLE);
158
        $select = $this->sql->select(self::_TABLE);
159
        $select->where->equalTo('user_id', $id);
159
        $select->where->equalTo('user_id', $id);
Línea 160... Línea 160...
160
        
160
        
161
        return $this->executeFetchOneObject($select, $prototype);
161
        return $this->executeFetchOneObject($select, $prototype);
-
 
162
    }
-
 
163
    public function fetchOneByGroupId($id)
-
 
164
    {
-
 
165
        $prototype = new HighPerformanceTeamsMyGroupsMembers();
-
 
166
        $select = $this->sql->select(self::_TABLE);
-
 
167
        $select->where->equalTo('group_id', $id);
-
 
168
        
-
 
169
        return $this->executeFetchOneObject($select, $prototype);
Línea 162... Línea 170...
162
    }
170
    }
163
   
171