Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2157 | Rev 2163 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2157 Rev 2160
Línea 98... Línea 98...
98
     */
98
     */
99
    public function fetchOneByUuid($uuid)
99
    public function fetchOneByUuid($uuid)
100
    {   $prototype = new Feed();
100
    {   $prototype = new Feed();
101
        $select = $this->sql->select(self::_TABLE);
101
        $select = $this->sql->select(self::_TABLE);
102
        $select->where->equalTo('uuid', $uuid);
102
        $select->where->equalTo('uuid', $uuid);
103
        $select->where->equalTo('status', Feed::STATUS_PUBLISHED);
-
 
104
        //$select->getSqlString($this->adapter->platform);
103
        //$select->getSqlString($this->adapter->platform);
Línea 105... Línea 104...
105
       
104
       
106
        return $this->executeFetchOneObject($select, $prototype);
105
        return $this->executeFetchOneObject($select, $prototype);