Symfony2 フォームにカスタム フィールド タイプを実装しようとしていますが、何らかの理由でこの質問のタイトルにあるように致命的なエラーが発生します。
私はすでにインターフェースから元の宣言をコピーしましたが、役に立ちませんでした:-(
<?php
namespace Yanic\HomeBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;
use Symfony\Component\Form\FormView;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormError;
use Symfony\Component\Form\CallbackValidator;
use Symfony\Component\Form\FormValidatorInterface;
class ShowOnlyType extends AbstractType
{
/**
* {@inheritdoc}
*/
function buildView(FormViewInterface $view, FormInterface $form, array $options)
{
$view->addVars(array(
'value' => date( 'd/m/Y H:i', $options['value'] )
));
}
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'DateTime'
));
}
public function getParent()
{
return 'form';
}
public function getName()
{
return 'showOnly';
}
}
助けてくれてありがとう