當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Doctrine_Record::preUpdate方法代碼示例

本文整理匯總了PHP中Doctrine_Record::preUpdate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Doctrine_Record::preUpdate方法的具體用法?PHP Doctrine_Record::preUpdate怎麽用?PHP Doctrine_Record::preUpdate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Doctrine_Record的用法示例。


在下文中一共展示了Doctrine_Record::preUpdate方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: update

 /**
  * updates given record
  *
  * @param Doctrine_Record $record   record to be updated
  * @return boolean                  whether or not the update was successful
  */
 public function update(Doctrine_Record $record)
 {
     $event = new Doctrine_Event($record, Doctrine_Event::RECORD_UPDATE);
     $record->preUpdate($event);
     $table = $record->getTable();
     $table->getRecordListener()->preUpdate($event);
     if (!$event->skipOperation) {
         $identifier = $record->identifier();
         if ($table->getOption('joinedParents')) {
             // currrently just for bc!
             $this->_updateCTIRecord($table, $record);
             //--
         } else {
             $array = $record->getPrepared();
             $this->conn->update($table, $array, $identifier);
         }
         $record->assignIdentifier(true);
     }
     $table->getRecordListener()->postUpdate($event);
     $record->postUpdate($event);
     return true;
 }
開發者ID:prismhdd,項目名稱:victorioussecret,代碼行數:28,代碼來源:UnitOfWork.php

示例2: preUpdate

 /**
  * Preupdate hook for transactional activity logging.
  *
  * @param Doctrine_Event $event
  */
 public function preUpdate($event)
 {
     parent::preUpdate($event);
     AIR2Logger::log($this, 'update');
 }
開發者ID:kaakshay,項目名稱:audience-insight-repository,代碼行數:10,代碼來源:AIR2_Record.php

示例3: update

 /**
  * update
  * updates the given record
  *
  * @param Doctrine_Record $record   record to be updated
  * @return boolean                  whether or not the update was successful
  */
 public function update(Doctrine_Record $record)
 {
     $event = new Doctrine_Event($this, Doctrine_Event::RECORD_UPDATE);
     $record->preUpdate($event);
     if (!$event->skipOperation) {
         $array = $record->getPrepared();
         if (empty($array)) {
             return false;
         }
         $set = array();
         foreach ($array as $name => $value) {
             if ($value instanceof Doctrine_Expression) {
                 $set[] = $value->getSql();
                 unset($array[$name]);
             } else {
                 $set[] = $name . ' = ?';
                 if ($value instanceof Doctrine_Record) {
                     if (!$value->exists()) {
                         $record->save($this->conn);
                     }
                     $array[$name] = $value->getIncremented();
                     $record->set($name, $value->getIncremented());
                 }
             }
         }
         $params = array_values($array);
         $id = $record->identifier();
         if (!is_array($id)) {
             $id = array($id);
         }
         $id = array_values($id);
         $params = array_merge($params, $id);
         $sql = 'UPDATE ' . $this->conn->quoteIdentifier($record->getTable()->getTableName()) . ' SET ' . implode(', ', $set) . ' WHERE ' . implode(' = ? AND ', $record->getTable()->getPrimaryKeys()) . ' = ?';
         $stmt = $this->conn->getDbh()->prepare($sql);
         $stmt->execute($params);
         $record->assignIdentifier(true);
     }
     $record->postUpdate($event);
     return true;
 }
開發者ID:snouhaud,項目名稱:camptocamp.org,代碼行數:47,代碼來源:UnitOfWork.php

示例4: update

 /**
  * updates given record
  *
  * @param Doctrine_Record $record   record to be updated
  * @return boolean                  whether or not the update was successful
  */
 public function update(Doctrine_Record $record)
 {
     $event = new Doctrine_Event($record, Doctrine_Event::RECORD_UPDATE);
     $record->preUpdate($event);
     $table = $record->getTable();
     $table->getRecordListener()->preUpdate($event);
     if (!$event->skipOperation) {
         $identifier = $record->identifier();
         if ($table->getOption('joinedParents')) {
             $dataSet = $this->formatDataSet($record);
             $component = $table->getComponentName();
             $classes = $table->getOption('joinedParents');
             $classes[] = $component;
             foreach ($record as $field => $value) {
                 if ($value instanceof Doctrine_Record) {
                     if (!$value->exists()) {
                         $value->save();
                     }
                     $record->set($field, $value->getIncremented());
                 }
             }
             foreach ($classes as $class) {
                 $parentTable = $this->conn->getTable($class);
                 $this->conn->update($this->conn->getTable($class), $dataSet[$class], $identifier);
             }
         } else {
             $array = $record->getPrepared();
             $this->conn->update($table, $array, $identifier);
         }
         $record->assignIdentifier(true);
     }
     $table->getRecordListener()->postUpdate($event);
     $record->postUpdate($event);
     return true;
 }
開發者ID:kirvin,項目名稱:the-nerdery,代碼行數:41,代碼來源:UnitOfWork.php


注:本文中的Doctrine_Record::preUpdate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。