Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5935 Rev 6001
Línea 61... Línea 61...
61
        return $this->executeFetchOneObject($select, $prototype);
61
        return $this->executeFetchOneObject($select, $prototype);
62
    }
62
    }
Línea -... Línea 63...
-
 
63
    
-
 
64
    
-
 
65
    
-
 
66
    /**
-
 
67
     *
-
 
68
     * @param
-
 
69
     * @return KnowledgeAreaCategoryUser[]
-
 
70
     */
-
 
71
    public function fetchAllByUserId($user_id)
-
 
72
    {
-
 
73
        
-
 
74
        $select = $this->sql->select(self::_TABLE);
-
 
75
        $select->where->equalTo('user_id', $user_id);
-
 
76
        
-
 
77
        
-
 
78
        $prototype = new KnowledgeAreaCategoryUser();
Línea 63... Línea 79...
63
    
79
        return $this->executeFetchAllObject($select, $prototype);
64
    
80
    }