コード例 #1
0
 public function update(Application_Model_Entity_Fead $fead)
 {
     $this->_db->update($this->_table, ['title' => $fead->getTitle(), 'order' => (int) $fead->getOrder(), 'folder' => (int) $fead->getFolder()], [$this->_db->quoteInto('feadid=?', $fead->getId()), $this->_db->quoteInto('userid=?', $this->_userId)]);
 }