コード例 #1
0
ファイル: UserProfileType.php プロジェクト: peterAK/pgs-sts
 /**
  * {@inheritdoc}
  */
 public function buildForm(FormBuilderInterface $builder, array $options)
 {
     $builder->add('prefix', 'choice', ['label' => 'Select a title', 'multiple' => false, 'choices' => ['Mr' => 'Mr', 'Mrs' => 'Mrs', 'Ms' => 'Ms'], 'attr' => ['style' => 'width:75px'], 'required' => false]);
     $builder->add('nickName', 'text', ['label' => 'form.name.nick', 'required' => false]);
     $builder->add('firstName', 'text', ['label' => 'form.name.first', 'required' => false, 'constraints' => [new NotBlank()]]);
     $builder->add('middleName', 'text', ['label' => 'form.name.middle', 'required' => false]);
     $builder->add('lastName', 'text', ['label' => 'form.name.last', 'required' => false]);
     $builder->add('phone', 'text', ['label' => 'form.phone', 'required' => false, 'attr' => ['style' => 'width:150px']]);
     $builder->add('mobile', 'text', ['label' => 'form.mobile', 'required' => false, 'attr' => ['style' => 'width:150px']]);
     $builder->add('address', 'text', ['label' => 'form.address', 'required' => false]);
     $builder->add('city', 'text', ['label' => 'form.city', 'required' => false, 'constraints' => [new NotBlank()]]);
     $builder->add('zip', 'text', ['label' => 'form.zipcode', 'required' => false, 'attr' => ['style' => 'width:100px']]);
     $builder->add('country', 'model', ['label' => 'form.country', 'class' => 'PGS\\CoreDomainBundle\\Model\\Country', 'empty_value' => 'form.country.select', 'query' => $this->countryQuery, 'constraints' => [new NotBlank()]]);
     $builder->add('state', 'model', ['label' => 'form.state', 'class' => 'PGS\\CoreDomainBundle\\Model\\State', 'empty_value' => 'form.state.select', 'constraints' => [new NotBlank()], 'required' => false]);
     $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) {
         /** @var UserProfile $profile*/
         $profile = new UserProfile();
         $form = $event->getForm();
         $query = $this->stateQuery->getNoStateChoice();
         if ($profile->getCountry()) {
             $query = $this->stateQuery->getStatesByCountryChoices($profile->getCountry());
         }
         $form->add('state', 'model', ['label' => 'form.state', 'class' => 'PGS\\CoreDomainBundle\\Model\\State', 'empty_value' => 'form.state.select', 'query' => $query, 'constraints' => [new NotBlank()]]);
     });
     $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) {
         /** @var UserProfile $profile */
         $profile = $event->getData();
         $form = $event->getForm();
         $query = $this->stateQuery->getNoStateChoice();
         $country = $this->countryQuery->findOneById($profile['country']);
         if (count($country)) {
             $query = $this->stateQuery->getStatesByCountryChoices($country);
         }
         $form->add('state', 'model', ['label' => 'form.state', 'class' => 'PGS\\CoreDomainBundle\\Model\\State', 'empty_value' => 'form.state.select', 'query' => $query, 'constraints' => [new NotBlank()], 'required' => false]);
     });
 }
コード例 #2
0
ファイル: BaseState.php プロジェクト: peterAK/pgs-sts
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param PropelPDO $con
  * @return void
  * @throws PropelException
  * @throws Exception
  * @see        BaseObject::setDeleted()
  * @see        BaseObject::isDeleted()
  */
 public function delete(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(StatePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         EventDispatcherProxy::trigger(array('delete.pre', 'model.delete.pre'), new ModelEvent($this));
         $deleteQuery = StateQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             // event behavior
             EventDispatcherProxy::trigger(array('delete.post', 'model.delete.post'), new ModelEvent($this));
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
コード例 #3
0
ファイル: BaseUserProfile.php プロジェクト: peterAK/pgs-sts
 /**
  * Get the associated State object
  *
  * @param PropelPDO $con Optional Connection object.
  * @param $doQuery Executes a query to get the object if required
  * @return State The associated State object.
  * @throws PropelException
  */
 public function getState(PropelPDO $con = null, $doQuery = true)
 {
     if ($this->aState === null && $this->state_id !== null && $doQuery) {
         $this->aState = StateQuery::create()->findPk($this->state_id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aState->addUserProfiles($this);
            */
     }
     return $this->aState;
 }
コード例 #4
0
ファイル: BaseCountry.php プロジェクト: peterAK/pgs-sts
 /**
  * Returns the number of related State objects.
  *
  * @param Criteria $criteria
  * @param boolean $distinct
  * @param PropelPDO $con
  * @return int             Count of related State objects.
  * @throws PropelException
  */
 public function countStates(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     $partial = $this->collStatesPartial && !$this->isNew();
     if (null === $this->collStates || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collStates) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getStates());
         }
         $query = StateQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByCountry($this)->count($con);
     }
     return count($this->collStates);
 }