Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2490 Rev 3032
Línea 396... Línea 396...
396
        $select->where->notEqualTo('status', Feed::STATUS_DELETED);
396
        $select->where->notEqualTo('status', Feed::STATUS_DELETED);
397
        $select->order('title');
397
        $select->order('title');
Línea 398... Línea 398...
398
        
398
        
399
        return $this->executeFetchAllObject($select, $prototype);
399
        return $this->executeFetchAllObject($select, $prototype);
-
 
400
    }
-
 
401
    /**
-
 
402
     *
-
 
403
     * @return Feed
-
 
404
     */
-
 
405
    public function fetchAllByDevelopAndCategoryId($id)
-
 
406
    {
-
 
407
        $prototype = new Feed();
-
 
408
 
-
 
409
        $select = $this->sql->select(self::_TABLE);
-
 
410
        $select->where->equalTo('type', Feed::TYPE_DC);
-
 
411
        $select->where->equalTo('topic_id', $id);
-
 
412
        $select->where->notEqualTo('status', Feed::STATUS_DELETED);
-
 
413
        $select->order('added_on DESC');
-
 
414
 
-
 
415
        return $this->executeFetchAllObject($select, $prototype);
-
 
416
    }
Línea 400... Línea 417...
400
    }
417
 
401
 
418
 
402
     /**
419
     /**
403
     *
420
     *