当前位置: 首页>>代码示例>>PHP>>正文


PHP Process::isNew方法代码示例

本文整理汇总了PHP中Process::isNew方法的典型用法代码示例。如果您正苦于以下问题:PHP Process::isNew方法的具体用法?PHP Process::isNew怎么用?PHP Process::isNew使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Process的用法示例。


在下文中一共展示了Process::isNew方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: doValidate

 /**
  * Validates all modified columns of given Process object.
  * If parameter $columns is either a single column name or an array of column names
  * than only those columns are validated.
  *
  * NOTICE: This does not apply to primary or foreign keys for now.
  *
  * @param      Process $obj The object to validate.
  * @param      mixed $cols Column name or array of column names.
  *
  * @return     mixed TRUE if all columns are valid or the error message of the first invalid column.
  */
 public static function doValidate(Process $obj, $cols = null)
 {
     $columns = array();
     if ($cols) {
         $dbMap = Propel::getDatabaseMap(ProcessPeer::DATABASE_NAME);
         $tableMap = $dbMap->getTable(ProcessPeer::TABLE_NAME);
         if (!is_array($cols)) {
             $cols = array($cols);
         }
         foreach ($cols as $colName) {
             if ($tableMap->containsColumn($colName)) {
                 $get = 'get' . $tableMap->getColumn($colName)->getPhpName();
                 $columns[$colName] = $obj->{$get}();
             }
         }
     } else {
         if ($obj->isNew() || $obj->isColumnModified(ProcessPeer::PRO_TIMEUNIT)) {
             $columns[ProcessPeer::PRO_TIMEUNIT] = $obj->getProTimeunit();
         }
         if ($obj->isNew() || $obj->isColumnModified(ProcessPeer::PRO_STATUS)) {
             $columns[ProcessPeer::PRO_STATUS] = $obj->getProStatus();
         }
         if ($obj->isNew() || $obj->isColumnModified(ProcessPeer::PRO_TYPE)) {
             $columns[ProcessPeer::PRO_TYPE] = $obj->getProType();
         }
         if ($obj->isNew() || $obj->isColumnModified(ProcessPeer::PRO_ASSIGNMENT)) {
             $columns[ProcessPeer::PRO_ASSIGNMENT] = $obj->getProAssignment();
         }
     }
     return BasePeer::doValidate(ProcessPeer::DATABASE_NAME, ProcessPeer::TABLE_NAME, $columns);
 }
开发者ID:nshong,项目名称:processmaker,代码行数:43,代码来源:BaseProcessPeer.php

示例2: delProcess

function delProcess($id)
{
    $tobeDeleted = new Process($id);
    if ($tobeDeleted->isNew()) {
        return true;
    }
    // item never existed in the first place
    if ($tobeDeleted->del()) {
        return true;
    } else {
        return $tobeDeleted;
    }
}
开发者ID:sapray,项目名称:ampersand-models,代码行数:13,代码来源:Process.inc.php


注:本文中的Process::isNew方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。