Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2163 Rev 2237
Línea 366... Línea 366...
366
        $select->order('title');
366
        $select->order('title');
Línea 367... Línea 367...
367
        
367
        
368
        return $this->executeFetchAllObject($select, $prototype);
368
        return $this->executeFetchAllObject($select, $prototype);
Línea -... Línea 369...
-
 
369
    }
-
 
370
 
-
 
371
     /**
-
 
372
     *
-
 
373
     * @return Feed
-
 
374
     */
-
 
375
    public function fetchAllByDevelop()
-
 
376
    {
-
 
377
        $prototype = new Feed();
-
 
378
        
-
 
379
        $select = $this->sql->select(self::_TABLE);
-
 
380
        $select->where->equalTo('type', Feed::TYPE_DC);
-
 
381
        $select->where->notEqualTo('status', Feed::STATUS_DELETED);
-
 
382
        $select->order('title');
-
 
383
        
-
 
384
        return $this->executeFetchAllObject($select, $prototype);
369
    }
385
    }
370
 
386