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


PHP entry::isNew方法代碼示例

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


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

示例1: doSave

 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param      PropelPDO $con
  * @return     int The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws     PropelException
  * @see        save()
  */
 protected function doSave(PropelPDO $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their coresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->akshowRelatedByKshowId !== null) {
             if ($this->akshowRelatedByKshowId->isModified() || $this->akshowRelatedByKshowId->isNew()) {
                 $affectedRows += $this->akshowRelatedByKshowId->save($con);
             }
             $this->setkshowRelatedByKshowId($this->akshowRelatedByKshowId);
         }
         if ($this->aentry !== null) {
             if ($this->aentry->isModified() || $this->aentry->isNew()) {
                 $affectedRows += $this->aentry->save($con);
             }
             $this->setentry($this->aentry);
         }
         if ($this->akshowRelatedByKuserId !== null) {
             if ($this->akshowRelatedByKuserId->isModified() || $this->akshowRelatedByKuserId->isNew()) {
                 $affectedRows += $this->akshowRelatedByKuserId->save($con);
             }
             $this->setkshowRelatedByKuserId($this->akshowRelatedByKuserId);
         }
         if ($this->isNew()) {
             $this->modifiedColumns[] = kvotePeer::ID;
         }
         // If this object has been modified, then save it to the database.
         $this->objectSaved = false;
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = kvotePeer::doInsert($this, $con);
                 $affectedRows += 1;
                 // we are assuming that there is only 1 row per doInsert() which
                 // should always be true here (even though technically
                 // BasePeer::doInsert() can insert multiple rows).
                 $this->setId($pk);
                 //[IMV] update autoincrement primary key
                 $this->setNew(false);
                 $this->objectSaved = true;
             } else {
                 $affectedObjects = kvotePeer::doUpdate($this, $con);
                 if ($affectedObjects) {
                     $this->objectSaved = true;
                 }
                 $affectedRows += $affectedObjects;
             }
             $this->resetModified();
             // [HL] After being saved an object is no longer 'modified'
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
開發者ID:kubrickfr,項目名稱:server,代碼行數:69,代碼來源:Basekvote.php

示例2: doSave

 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param      PropelPDO $con
  * @param      boolean $skipReload Whether to skip the reload for this object from database.
  * @return     int The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws     PropelException
  * @see        save()
  */
 protected function doSave(PropelPDO $con, $skipReload = false)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         $reloadObject = false;
         // We call the save method on the following object(s) if they
         // were passed to this object by their coresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->akshow !== null) {
             if ($this->akshow->isModified() || $this->akshow->isNew()) {
                 $affectedRows += $this->akshow->save($con);
             }
             $this->setkshow($this->akshow);
         }
         if ($this->aentry !== null) {
             if ($this->aentry->isModified() || $this->aentry->isNew()) {
                 $affectedRows += $this->aentry->save($con);
             }
             $this->setentry($this->aentry);
         }
         if ($this->auiConf !== null) {
             if ($this->auiConf->isModified() || $this->auiConf->isNew()) {
                 $affectedRows += $this->auiConf->save($con);
             }
             $this->setuiConf($this->auiConf);
         }
         // If this object has been modified, then save it to the database.
         $this->objectSaved = false;
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = widgetPeer::doInsert($this, $con);
                 if (!$skipReload) {
                     $reloadObject = true;
                 }
                 $affectedRows += 1;
                 // we are assuming that there is only 1 row per doInsert() which
                 // should always be true here (even though technically
                 // BasePeer::doInsert() can insert multiple rows).
                 $this->setNew(false);
                 $this->objectSaved = true;
             } else {
                 $affectedObjects = widgetPeer::doUpdate($this, $con);
                 if ($affectedObjects) {
                     $this->objectSaved = true;
                 }
                 $affectedRows += $affectedObjects;
             }
             $this->resetModified();
             // [HL] After being saved an object is no longer 'modified'
         }
         $this->alreadyInSave = false;
         if ($reloadObject) {
             $this->reload($con);
         }
     }
     return $affectedRows;
 }
開發者ID:DBezemer,項目名稱:server,代碼行數:72,代碼來源:Basewidget.php

示例3: doSave

 /**
  * Performs the work of inserting or updating the row in the database.
  *
  * If the object is new, it inserts it; otherwise an update is performed.
  * All related objects are also updated in this method.
  *
  * @param      PropelPDO $con
  * @return     int The number of rows affected by this insert/update and any referring fk objects' save() operations.
  * @throws     PropelException
  * @see        save()
  */
 protected function doSave(PropelPDO $con)
 {
     $affectedRows = 0;
     // initialize var to track total num of affected rows
     if (!$this->alreadyInSave) {
         $this->alreadyInSave = true;
         // We call the save method on the following object(s) if they
         // were passed to this object by their coresponding set
         // method.  This object relates to these object(s) by a
         // foreign key reference.
         if ($this->aentry !== null) {
             if ($this->aentry->isModified() || $this->aentry->isNew()) {
                 $affectedRows += $this->aentry->save($con);
             }
             $this->setentry($this->aentry);
         }
         if ($this->aassetParams !== null) {
             if ($this->aassetParams->isModified() || $this->aassetParams->isNew()) {
                 $affectedRows += $this->aassetParams->save($con);
             }
             $this->setassetParams($this->aassetParams);
         }
         if ($this->isNew()) {
             $this->modifiedColumns[] = assetPeer::INT_ID;
         }
         // If this object has been modified, then save it to the database.
         if ($this->isModified()) {
             if ($this->isNew()) {
                 $pk = assetPeer::doInsert($this, $con);
                 $affectedRows += 1;
                 // we are assuming that there is only 1 row per doInsert() which
                 // should always be true here (even though technically
                 // BasePeer::doInsert() can insert multiple rows).
                 $this->setIntId($pk);
                 //[IMV] update autoincrement primary key
                 $this->setNew(false);
             } else {
                 $affectedRows += assetPeer::doUpdate($this, $con);
             }
             $this->resetModified();
             // [HL] After being saved an object is no longer 'modified'
         }
         if ($this->collmediaInfos !== null) {
             foreach ($this->collmediaInfos as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         if ($this->collassetParamsOutputs !== null) {
             foreach ($this->collassetParamsOutputs as $referrerFK) {
                 if (!$referrerFK->isDeleted()) {
                     $affectedRows += $referrerFK->save($con);
                 }
             }
         }
         $this->alreadyInSave = false;
     }
     return $affectedRows;
 }
開發者ID:richhl,項目名稱:kalturaCE,代碼行數:71,代碼來源:Baseasset.php


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