Ejemplo n.º 1
0
Archivo: Api.php Proyecto: keeko/core
 /**
  * Declares an association between this object and a ChildAction object.
  *
  * @param  ChildAction $v
  * @return $this|\keeko\core\model\Api The current object (for fluent API support)
  * @throws PropelException
  */
 public function setAction(ChildAction $v = null)
 {
     if ($v === null) {
         $this->setActionId(NULL);
     } else {
         $this->setActionId($v->getId());
     }
     $this->aAction = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildAction object, it will not be re-added.
     if ($v !== null) {
         $v->addApi($this);
     }
     return $this;
 }
Ejemplo n.º 2
0
 /**
  * Interal mechanism to add Apis to Action
  * 
  * @param Action $model
  * @param mixed $data
  */
 protected function doAddApis(Action $model, $data)
 {
     $errors = [];
     foreach ($data as $entry) {
         if (!isset($entry['id'])) {
             $errors[] = 'Missing id for Api';
         } else {
             $related = ApiQuery::create()->findOneById($entry['id']);
             $model->addApi($related);
         }
     }
     if (count($errors) > 0) {
         return new ErrorsException($errors);
     }
 }