Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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