Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2149 Rev 2150
Línea 94... Línea 94...
94
     *
94
     *
95
     * @param int $feed_uuid
95
     * @param int $feed_uuid
96
     * @return Feed
96
     * @return Feed
97
     */
97
     */
98
    public function fetchOneByUuid($uuid)
98
    public function fetchOneByUuid($uuid)
99
    {
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->notEqualTo('status', Feed::STATUS_DELETED);
103
        $select->getSqlString($this->adapter->platform);
103
        $select->getSqlString($this->adapter->platform);
104
        $prototype = new Feed();
-
 
-
 
104
       
105
        return $this->executeFetchOneObject($select, $prototype);
105
        return $this->executeFetchOneObject($select, $prototype);
106
    }
106
    }
Línea 107... Línea 107...
107
    
107
    
108
    /**
108
    /**