示例#1
0
 /**
  * Internal mechanism to set the Actor id
  * 
  * @param Activity $model
  * @param mixed $relatedId
  */
 protected function doSetActorId(Activity $model, $relatedId)
 {
     if ($model->getActorId() !== $relatedId) {
         $model->setActorId($relatedId);
         return true;
     }
     return false;
 }
示例#2
0
文件: UserQuery.php 项目: keeko/core
 /**
  * Filter the query by a related \keeko\core\model\Activity object
  *
  * @param \keeko\core\model\Activity|ObjectCollection $activity the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildUserQuery The current query, for fluid interface
  */
 public function filterByActivity($activity, $comparison = null)
 {
     if ($activity instanceof \keeko\core\model\Activity) {
         return $this->addUsingAlias(UserTableMap::COL_ID, $activity->getActorId(), $comparison);
     } elseif ($activity instanceof ObjectCollection) {
         return $this->useActivityQuery()->filterByPrimaryKeys($activity->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByActivity() only accepts arguments of type \\keeko\\core\\model\\Activity or Collection');
     }
 }