![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/CoreBundle/Entity/ |
<?php namespace Mautic\CoreBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; interface TranslationEntityInterface { /** * @return ?TranslationEntityInterface */ public function getTranslationParent(); /** * Set entity this is a translation of. * * @return mixed */ public function setTranslationParent(TranslationEntityInterface $parent = null); /** * Set this entity as a main content (remove translation parent). * * @return mixed */ public function removeTranslationParent(); /** * Get ArrayCollection of translated entities. * * @return ?ArrayCollection */ public function getTranslationChildren(); /** * @return mixed */ public function addTranslationChild(TranslationEntityInterface $child); /** * @return mixed */ public function removeTranslationChild(TranslationEntityInterface $child); /** * Get array with entities for this translation. * * If $onlyChildren, then return just $children; otherwise [$parent, $children] * * @return array */ public function getTranslations($onlyChildren = false); /** * @param bool $isChild True to return if the item is a translation of a parent * * @return bool */ public function isTranslation($isChild = false); /** * @return mixed */ public function getLanguage(); }