Exemplo n.º 1
0
 /**
  * @param Config $object
  * @return int
  */
 protected function getObjectId($object)
 {
     return $object->getId();
 }
Exemplo n.º 2
0
 /**
  * @param ConfigModel $config
  * @depends testModify
  */
 public function testDelete(ConfigModel $config)
 {
     $event = new ConfigDeleteEvent($config->getId());
     $event->setDispatcher($this->dispatcher);
     $action = new Config();
     $action->delete($event);
     $deletedConfig = $event->getConfig();
     $this->assertInstanceOf('Thelia\\Model\\Config', $deletedConfig);
     $this->assertTrue($deletedConfig->isDeleted());
 }
Exemplo n.º 3
0
 /**
  * Exclude object from result
  *
  * @param   ChildConfig $config Object to remove from the list of results
  *
  * @return ChildConfigQuery The current query, for fluid interface
  */
 public function prune($config = null)
 {
     if ($config) {
         $this->addUsingAlias(ConfigTableMap::ID, $config->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
Exemplo n.º 4
0
 /**
  * Declares an association between this object and a ChildConfig object.
  *
  * @param                  ChildConfig $v
  * @return                 \Thelia\Model\ConfigI18n The current object (for fluent API support)
  * @throws PropelException
  */
 public function setConfig(ChildConfig $v = null)
 {
     if ($v === null) {
         $this->setId(NULL);
     } else {
         $this->setId($v->getId());
     }
     $this->aConfig = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildConfig object, it will not be re-added.
     if ($v !== null) {
         $v->addConfigI18n($this);
     }
     return $this;
 }
Exemplo n.º 5
0
 /**
  * Filter the query by a related \Thelia\Model\Config object
  *
  * @param \Thelia\Model\Config|ObjectCollection $config The related object(s) to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildConfigI18nQuery The current query, for fluid interface
  */
 public function filterByConfig($config, $comparison = null)
 {
     if ($config instanceof \Thelia\Model\Config) {
         return $this->addUsingAlias(ConfigI18nTableMap::ID, $config->getId(), $comparison);
     } elseif ($config instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(ConfigI18nTableMap::ID, $config->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByConfig() only accepts arguments of type \\Thelia\\Model\\Config or Collection');
     }
 }