本文整理汇总了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);
}
示例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;
}
}