Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function addError(FormError $error)
 {
     if ($this->parent && $this->config->getErrorBubbling()) {
         $this->parent->addError($error);
     } else {
         $this->errors[] = $error;
     }
     return $this;
 }
Ejemplo n.º 2
0
 /**
  * Returns whether errors bubble up to the parent.
  *
  * @return Boolean
  *
  * @deprecated Deprecated since version 2.1, to be removed in 2.3. Use
  *             {@link getConfig()} and {@link FormConfigInterface::getErrorBubbling()} instead.
  */
 public function getErrorBubbling()
 {
     trigger_error('getErrorBubbling() is deprecated since version 2.1 and will be removed in 2.3. Use getConfig() and FormConfigInterface::getErrorBubbling() instead.', E_USER_DEPRECATED);
     return $this->config->getErrorBubbling();
 }
Ejemplo n.º 3
0
 /**
  * Creates an unmodifiable copy of a given configuration.
  *
  * @param  FormConfigInterface $config The configuration to copy.
  */
 public function __construct(FormConfigInterface $config)
 {
     $dispatcher = $config->getEventDispatcher();
     if (!$dispatcher instanceof UnmodifiableEventDispatcher) {
         $dispatcher = new UnmodifiableEventDispatcher($dispatcher);
     }
     $this->dispatcher = $dispatcher;
     $this->name = $config->getName();
     $this->propertyPath = $config->getPropertyPath();
     $this->mapped = $config->getMapped();
     $this->byReference = $config->getByReference();
     $this->virtual = $config->getVirtual();
     $this->compound = $config->getCompound();
     $this->types = $config->getTypes();
     $this->viewTransformers = $config->getViewTransformers();
     $this->modelTransformers = $config->getModelTransformers();
     $this->dataMapper = $config->getDataMapper();
     $this->validators = $config->getValidators();
     $this->required = $config->getRequired();
     $this->disabled = $config->getDisabled();
     $this->errorBubbling = $config->getErrorBubbling();
     $this->emptyData = $config->getEmptyData();
     $this->attributes = $config->getAttributes();
     $this->data = $config->getData();
     $this->dataClass = $config->getDataClass();
     $this->options = $config->getOptions();
 }
Ejemplo n.º 4
0
 /**
  * Returns whether errors bubble up to the parent.
  *
  * @return Boolean
  *
  * @deprecated Deprecated since version 2.1, to be removed in 2.3. Use
  *             {@link getConfig()} and {@link FormConfigInterface::getErrorBubbling()} instead.
  */
 public function getErrorBubbling()
 {
     return $this->config->getErrorBubbling();
 }