Ни свойство, ни один из методов не существуют и не имеют публичного доступа в классе в пользовательском FieldType

Я добавил пользовательский FieldTypeExtension в мой проект Symfony. Я хочу расширить SubmitType, SubmitTypeExtension.php выглядит следующим образом:

class SubmitTypeExtension extends AbstractTypeExtension
{
/**
* Returns the name of the type being extended.
*
* @return string The name of the type being extended
*/
public function getExtendedType()
{
return SubmitType::class;
}

public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefined(array('button_image','button_color'));
}

public function buildView(FormView $view, FormInterface $form, array $options)
{
if (isset($options['button_image'])) {
$parentData = $form->getParent()->getData();

$buttonImage = null;
if (null !== $parentData) {
$accessor = PropertyAccess::createPropertyAccessor();
$buttonImage = $accessor->getValue($parentData, $options['button_image']);
}

$view->vars['button_image'] = $buttonImage;
}
if (isset($options['button_color'])) {
$parentData = $form->getParent()->getData();

$buttonColor = null;
if (null !== $parentData) {
$accessor = PropertyAccess::createPropertyAccessor();
$buttonColor = $accessor->getValue($parentData, $options['button_color']);
}

$view->vars['button_color'] = $buttonColor;
}
}
}

Я называю тип поля в пользовательском типе:

class VereinType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name', TextType::class)
->add('save', SubmitType::class, array(
'label' => 'Speichern',
'button_image' => 'check',
'button_color' => 'rgba(13, 135, 13, 1)'
))
;
}

public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'TeilnehmerBundle\Entity\Verein',
));
}
}

Мне нужно это, чтобы настроить мой submitType с глификом.

{% extends 'bootstrap_3_layout.html.twig' %}

{%- block submit_widget -%}
{% set attr = attr|merge({class: (attr.class|default('btn-default') ~ ' btn btn-lg btn-sm')|trim}) %}
{%- if label is empty -%}
{%- if label_format is not empty -%}
{% set label = label_format|replace({
'%name%': name,
'%id%': id,
}) %}
{%- else -%}
{% set label = name|humanize %}
{%- endif -%}
{%- endif -%}
<button type="{{ type|default('submit') }}" {{ block('button_attributes') }}><span class="glyphicon glyphicon-{{ button_image }}" aria-hidden="true" style="color: {{ button_color }};"></span><b>{{ translation_domain is same as(false) ? label : label|trans({}, translation_domain) }}</b></button>
{%- endblock submit_widget -%}

В services.yml я добавил сервис

  app.submit_type_extension:
class: TeilnehmerBundle\Form\Extension\SubmitTypeExtension
tags:
- { name: form.type_extension, extended_type: Symfony\Component\Form\Extension\Core\Type\SubmitType }

Но теперь я получаю следующую ошибку

Neither the property "check" nor one of the methods "getCheck()", "check()", "isCheck()", "hasCheck()", "__get()" exist and have public access in class "TeilnehmerBundle\Entity\Verein".

Проблема в том, что у меня не может быть никаких свойств, подобных двум, которые я добавил, потому что я использую их только для настройки своих кнопок.
Может кто-нибудь мне помочь?

0

Решение

Изменено следующее в моем SubmitTypeExtension:

class SubmitTypeExtension extends AbstractTypeExtension
{
/**
* Returns the name of the type being extended.
*
* @return string The name of the type being extended
*/
public function getExtendedType()
{
return SubmitType::class;
}

public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefined(array('button_image','button_color'));
}

public function buildView(FormView $view, FormInterface $form, array $options)
{
if(isset($options['button_image']))
$view->vars['button_image'] = $options['button_image'];
else
$view->vars['button_image'] = NULL;

if(isset($options['button_color']))
$view->vars['button_color'] = $options['button_color'];
else
$view->vars['button_color'] = NULL;
}

/**
* @param OptionsResolverInterface $resolver
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'button_image' => null,
'button_color' => null,
));
}
}

Теперь все отлично работает 🙂

0

Другие решения

Других решений пока нет …