PHP code example of secit-pl / entity-translation-bundle
1. Go to this page and download the library: Download secit-pl/entity-translation-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
secit-pl / entity-translation-bundle example snippets
declare(strict_types=1);
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Class Shop.
*
* @ORM\Table(name="shops")
* @ORM\Entity
*/
class Shop
{
/**
* @var int|null
*
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @var string|null
*
* @ORM\Column(type="string")
*
* @JMS\Expose
*/
private $name;
/**
* @var string|null
*
* @ORM\Column(type="string")
*
* @JMS\Expose
*/
private $description;
/**
* @var string|null
*
* @ORM\Column(type="string")
*
* @JMS\Expose
*/
private $city;
/**
* @var string|null
*
* @ORM\Column(type="string")
*
* @JMS\Expose
*/
private $street;
/**
* Get id.
*
* @return int|null
*/
public function getId(): ?int
{
return $this->id;
}
/**
* Get name.
*
* @return null|string
*/
public function getName(): ?string
{
return $this->name;
}
/**
* Set name.
*
* @param null|string $name
*
* @return Shop
*/
public function setName(?string $name): Shop
{
$this->name = $name;
return $this;
}
/**
* Get description.
*
* @return null|string
*/
public function getDescription(): ?string
{
return $this->description;
}
/**
* Set description.
*
* @param null|string $description
*
* @return Shop
*/
public function setDescription(?string $description): Shop
{
$this->description = $description;
return $this;
}
/**
* Get city.
*
* @return null|string
*/
public function getCity(): ?string
{
return $this->city;
}
/**
* Set city.
*
* @param null|string $city
*
* @return Shop
*/
public function setCity(?string $city): Shop
{
$this->city = $city;
return $this;
}
/**
* Get street.
*
* @return null|string
*/
public function getStreet(): ?string
{
return $this->street;
}
/**
* Set street.
*
* @param null|string $street
*
* @return Shop
*/
public function setStreet(?string $street): Shop
{
$this->street = $street;
return $this;
}
}
declare(strict_types=1);
namespace App\Entity\Shop;
use App\Entity\Shop;
use Doctrine\ORM\Mapping as ORM;
use SecIT\EntityTranslationBundle\Entity\AbstractTranslation;
/**
* Class Translation.
*
* @ORM\Table(name="shops_translations")
* @ORM\Entity
*
* @method Shop getTranslatable()
*/
class Translation extends AbstractTranslation
{
/**
* @var int|null
*
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @var string|null
*
* @ORM\Column(type="string")
*
* @JMS\Expose
*/
private $name;
/**
* @var string|null
*
* @ORM\Column(type="string")
*
* @JMS\Expose
*/
private $description;
/**
* Get id.
*
* @return int|null
*/
public function getId(): ?int
{
return $this->id;
}
/**
* Get name.
*
* @return null|string
*/
public function getName(): ?string
{
return $this->name;
}
/**
* Set name.
*
* @param null|string $name
*
* @return Translation
*/
public function setName(?string $name): Translation
{
$this->name = $name;
return $this;
}
/**
* Get description.
*
* @return null|string
*/
public function getDescription(): ?string
{
return $this->description;
}
/**
* Set description.
*
* @param null|string $description
*
* @return Translation
*/
public function setDescription(?string $description): Translation
{
$this->description = $description;
return $this;
}
}
declare(strict_types=1);
namespace App\Entity;
use App\Entity\Translation;
use Doctrine\ORM\Mapping as ORM;
use SecIT\EntityTranslationBundle\Translations\TranslatableInterface;
use SecIT\EntityTranslationBundle\Translations\TranslatableTrait;
/**
* Class Shop.
*
* @ORM\Table(name="shops")
* @ORM\Entity
*
* @method Translation getTranslation(?string $locale)
* @method Collection|Translation[] getTranslations
*/
class Shop implements TranslatableInterface
{
use TranslatableTrait {
__construct as private initializeTranslationsCollection;
}
/**
* @var int|null
*
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @var string|null
*
* @ORM\Column(type="string")
*
* @JMS\Expose
*/
private $city;
/**
* @var string|null
*
* @ORM\Column(type="string")
*
* @JMS\Expose
*/
private $street;
/**
* Shop constructor.
*/
public function __construct()
{
$this->initializeTranslationsCollection();
}
/**
* Get id.
*
* @return int|null
*/
public function getId(): ?int
{
return $this->id;
}
/**
* Get name.
*
* @param null|string locale
*
* @return null|string
*/
public function getName(?string $locale = null): ?string
{
return $this->getTranslation($locale)->getName();
}
/**
* Get description.
*
* @param null|string locale
*
* @return null|string
*/
public function getDescription(?string $locale = null): ?string
{
return $this->getTranslation($locale)->getDescription();
}
/**
* Get city.
*
* @return null|string
*/
public function getCity(): ?string
{
return $this->city;
}
/**
* Set city.
*
* @param null|string $city
*
* @return Shop
*/
public function setCity(?string $city): Shop
{
$this->city = $city;
return $this;
}
/**
* Get street.
*
* @return null|string
*/
public function getStreet(): ?string
{
return $this->street;
}
/**
* Set street.
*
* @param null|string $street
*
* @return Shop
*/
public function setStreet(?string $street): Shop
{
$this->street = $street;
return $this;
}
}
// creating entity
$shop = new Shop();
$shop->setCity('city')
->setStreet('some street 1');
// adding polish translation
$shop->getTranslation('pl')
->setName('Nazwa')
->setDescription('Opis...');
// adding english translation
$shop->getTranslation('en_GB')
->setName('Name')
->setDescription('Description...');
$doctrine->getManager()->persist($shop);
$doctrine->getManager()->flush();
// fetching current locale translation
// let's say the default locale is en_GB
$name = $shop->getName(); // Name
// fetching defined locale translation
$name = $shop->getName('pl'); // Nazwa
// change the current locale
$shop->setCurrentLocale('pl');
$name = $shop->getName(); // Nazwa
declare(strict_types=1);
namespace App\Form;
use App\Entity\Shop;
use App\Form\Shop\TranslationType;
use SecIT\EntityTranslationBundle\Form\Type\ResourceTranslationsType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
/**
* Class ShopType.
*/
class ShopType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('translations', ResourceTranslationsType::class, [
'entry_type' => TranslationType::class,
])
->add('city')
->add('street')
->add('save', SubmitType::class);
}
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'data_class' => Shop::class,
]);
}
}
declare(strict_types=1);
namespace App\Form;
use App\Entity\Shop\Translation;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
/**
* Class TranslationType.
*/
class TranslationType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name')
->add('description');
}
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'data_class' => Translation::class,
]);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.