Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2237 Rev 2337
Línea 382... Línea 382...
382
        $select->order('title');
382
        $select->order('title');
Línea 383... Línea 383...
383
        
383
        
384
        return $this->executeFetchAllObject($select, $prototype);
384
        return $this->executeFetchAllObject($select, $prototype);
Línea -... Línea 385...
-
 
385
    }
-
 
386
 
-
 
387
     /**
-
 
388
     *
-
 
389
     * @return Feed
-
 
390
     */
-
 
391
    public function fetchAllByDevelopInternContent()
-
 
392
    {
-
 
393
        $prototype = new Feed();
-
 
394
        
-
 
395
        $select = $this->sql->select(self::_TABLE);
-
 
396
        $select->where->equalTo('type', Feed::TYPE_DC);
-
 
397
        $select->where->notEqualTo('status', Feed::STATUS_DELETED);
-
 
398
        $select->where->equalTo('link_media', 'cesa');
-
 
399
        $select->order('title');
-
 
400
        
-
 
401
        return $this->executeFetchAllObject($select, $prototype);
-
 
402
    }
-
 
403
 
-
 
404
      /**
-
 
405
     *
-
 
406
     * @return Feed
-
 
407
     */
-
 
408
    public function fetchAllByDevelopExternContent()
-
 
409
    {
-
 
410
        $prototype = new Feed();
-
 
411
        
-
 
412
        $select = $this->sql->select(self::_TABLE);
-
 
413
        $select->where->equalTo('type', Feed::TYPE_DC);
-
 
414
        $select->where->notEqualTo('status', Feed::STATUS_DELETED);
-
 
415
        $select->where->notEqualTo('link_media', 'cesa');
-
 
416
        $select->order('title');
-
 
417
        
-
 
418
        return $this->executeFetchAllObject($select, $prototype);
385
    }
419
    }
386
 
420