|
- <?php
- namespace Lc\AdminBundle\Entity\Translation;
-
-
- use Doctrine\ORM\Mapping as ORM;
- use Gedmo\Translatable\Entity\MappedSuperclass\AbstractTranslation;
-
- /**
- * @ORM\Table(name="lc_translations_entity", indexes={
- * @ORM\Index(name="entity_translation_idx", columns={"locale", "object_class", "field", "foreign_key"})
- * })
- * @ORM\Entity(repositoryClass="Lc\AdminBundle\Repository\BaseRepository")
- */
-
- class EntityTranslation extends AbstractTranslation
- {
- //put your code here
-
- }
|