Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 279 Rev 280
Línea 89... Línea 89...
89
        $select->where->equalTo('capsule_id', $capsule_id);
89
        $select->where->equalTo('capsule_id', $capsule_id);
Línea 90... Línea 90...
90
        
90
        
91
        return $this->executeFetchAllObject($select, $prototype);
91
        return $this->executeFetchAllObject($select, $prototype);
Línea -... Línea 92...
-
 
92
   }
-
 
93
   
-
 
94
   /**
-
 
95
    *
-
 
96
 
-
 
97
    * @param int $capsule_id
-
 
98
    * @param int $user_id
-
 
99
    * return CompanyMicrolearningCapsuleComment[]
-
 
100
    */
-
 
101
   public function fetchAllByCapsuleIdAndUserId($capsule_id, $user_id)
-
 
102
   {
-
 
103
       $prototype = new CompanyMicrolearningCapsuleComment();
-
 
104
       
-
 
105
       $select = $this->sql->select();
-
 
106
       $select->from(self::_TABLE);
-
 
107
       $select->where->equalTo('capsule_id', $capsule_id);
-
 
108
       $select->where->equalTo('user_id', $user_id);
-
 
109
       $select->order('added_on DESC');
-
 
110
       
-
 
111
       return $this->executeFetchAllObject($select, $prototype);
Línea 92... Línea 112...
92
   }
112
   }
93
   
113
   
94
   
114
   
95
   /**
115
   /**
Línea 147... Línea 167...
147
        return $this->executeFetchOneObject($select, $prototype);
167
        return $this->executeFetchOneObject($select, $prototype);
148
    }
168
    }
Línea -... Línea 169...
-
 
169
 
-
 
170
    
-
 
171
    
-
 
172
    /**
-
 
173
     *
-
 
174
     * @param string $uuid
-
 
175
     * return CompanyMicrolearningCapsuleComment
-
 
176
     */
-
 
177
    public function fetchOneByUuid($uuid)
-
 
178
    {
-
 
179
        $prototype = new CompanyMicrolearningCapsuleComment();
-
 
180
        $select = $this->sql->select();
-
 
181
        $select->from(self::_TABLE);
-
 
182
        $select->where->equalTo('uuid', $uuid);
Línea 149... Línea 183...
149
 
183
        
150
    
184
        return $this->executeFetchOneObject($select, $prototype);
151
    
185
    }
152
    
186
    
153
    /**
187
    /**
154
     *
188
     *
155
     * @param CompanyMicrolearningCapsuleComment $CompanyMicrolearningCapsuleComment
189
     * @param CompanyMicrolearningCapsuleComment $companyMicrolearningCapsuleComment
156
     * @return boolean
190
     * @return boolean
157
     */
191
     */
158
    public function insert($CompanyMicrolearningCapsuleComment)
192
    public function insert($companyMicrolearningCapsuleComment)
Línea 159... Línea 193...
159
    {
193
    {
160
        $hydrator = new ObjectPropertyHydrator();
194
        $hydrator = new ObjectPropertyHydrator();
Línea 161... Línea 195...
161
        $values = $hydrator->extract($CompanyMicrolearningCapsuleComment);
195
        $values = $hydrator->extract($companyMicrolearningCapsuleComment);
162
        $values = $this->removeEmpty($values);
196
        $values = $this->removeEmpty($values);
163
        
197
        
164
        $insert = $this->sql->insert(self::_TABLE);
198
        $insert = $this->sql->insert(self::_TABLE);
Línea 165... Línea 199...
165
        $insert->values($values);
199
        $insert->values($values);
166
        
200
        
Línea 167... Línea 201...
167
        $response = $this->executeInsert($insert);
201
        $response = $this->executeInsert($insert);
168
        if($response) {
202
        if($response) {
169
            $CompanyMicrolearningCapsuleComment->id = $this->lastInsertId;
203
            $companyMicrolearningCapsuleComment->id = $this->lastInsertId;
170
        }
204
        }
171
        
205
        
172
        return $response;
206
        return $response;
173
    }
207
    }
174
    
208
    
175
 
209
 
Línea 176... Línea 210...
176
    
210
    
177
    /**
211
    /**
Línea 178... Línea 212...
178
     *
212
     *
179
     * @param CompanyMicrolearningCapsuleComment $CompanyMicrolearningCapsuleComment
213
     * @param int $id