示例#1
0
 /**
  * Internal mechanism to set the KstrukturRoot id
  * 
  * @param Skill $model
  * @param mixed $relatedId
  */
 protected function doSetKstrukturRootId(Skill $model, $relatedId)
 {
     if ($model->getKstrukturId() !== $relatedId) {
         $model->setKstrukturId($relatedId);
         return true;
     }
     return false;
 }
示例#2
0
 /**
  * Filter the query by a related \gossi\trixionary\model\Skill object
  *
  * @param \gossi\trixionary\model\Skill|ObjectCollection $skill the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildKstrukturQuery The current query, for fluid interface
  */
 public function filterByRootSkill($skill, $comparison = null)
 {
     if ($skill instanceof \gossi\trixionary\model\Skill) {
         return $this->addUsingAlias(KstrukturTableMap::COL_ID, $skill->getKstrukturId(), $comparison);
     } elseif ($skill instanceof ObjectCollection) {
         return $this->useRootSkillQuery()->filterByPrimaryKeys($skill->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByRootSkill() only accepts arguments of type \\gossi\\trixionary\\model\\Skill or Collection');
     }
 }