Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1 Rev 112
Línea 169... Línea 169...
169
    }
169
    }
Línea 170... Línea 170...
170
    
170
    
171
    
171
    
-
 
172
    /**
-
 
173
     *
-
 
174
     
-
 
175
     * @return CompanyMicrolearningCapsule[]
-
 
176
     */
-
 
177
    public function fetchAllActive()
-
 
178
    {
-
 
179
        $prototype = new CompanyMicrolearningCapsule();
-
 
180
        
-
 
181
        $select = $this->sql->select(self::_TABLE);
-
 
182
        
-
 
183
        $select->where->equalTo('status', CompanyMicrolearningCapsule::STATUS_ACTIVE);
-
 
184
        
-
 
185
        $select->order(['order', 'name']);
-
 
186
        
-
 
187
        return $this->executeFetchAllObject($select, $prototype);
-
 
188
    }
-
 
189
    
-
 
190
    
-
 
191
    /**
-
 
192
     *
-
 
193
     
-
 
194
     * @return CompanyMicrolearningCapsule[]
-
 
195
     */
-
 
196
    public function fetchAll()
-
 
197
    {
-
 
198
        $prototype = new CompanyMicrolearningCapsule();
-
 
199
        
-
 
200
        $select = $this->sql->select(self::_TABLE);
-
 
201
        $select->order(['order', 'name']);
-
 
202
        
-
 
203
        return $this->executeFetchAllObject($select, $prototype);
-
 
204
    }
-
 
205
    
-
 
206
    
172
    /**
207
    /**
173
     *
208
     *
174
     * @param int $companyId
209
     * @param int $companyId
175
     * @param int $topicId
210
     * @param int $topicId
176
     * @param string $search
211
     * @param string $search