<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
simettric / doctrine-translatable-form-bundle example snippets
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
new Simettric\DoctrineTranslatableFormBundle\SimettricDoctrineTranslatableFormBundle(),
);
// ...
}
// ...
}
namespace AppBundle\Form;
use Simettric\DoctrineTranslatableFormBundle\Form\AbstractTranslatableType;
use Simettric\DoctrineTranslatableFormBundle\Form\TranslatableTextType;
class CategoryType extends AbstractTranslatableType
{
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
// you can add the translatable fields
$this->createTranslatableMapper($builder, $options)
->add("name", TranslatableTextType::class)
->add("description", TranslatableTextareaType::class)
;
// and then you can add the rest of the fields using the standard way
$builder->add('enabled')
;
}
/**
* @param OptionsResolver $resolver
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'AppBundle\Entity\Category'
));
// this is
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.