Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2957 Rev 2962
Línea 85... Línea 85...
85
    {
85
    {
86
        $prototype = new Notification();
86
        $prototype = new Notification();
Línea 87... Línea 87...
87
 
87
 
88
        $select = $this->sql->select(self::_TABLE);
88
        $select = $this->sql->select(self::_TABLE);
89
        $select->where->equalTo('user_id', $user_id);
-
 
-
 
89
        $select->where->equalTo('user_id', $user_id);
-
 
90
        $select->limit(30);
90
 
91
        $select->order(['added_on DESC']);
91
        return $this->executeFetchAllObject($select, $prototype);
92
        return $this->executeFetchAllObject($select, $prototype);
Línea 92... Línea 93...
92
    }
93
    }
93
    
94