Networking\InitCmsBundle\Model\Page::getAllTranslations PHP Méthode

getAllTranslations() public méthode

public getAllTranslations ( ) : ArrayCollection
Résultat Doctrine\Common\Collections\ArrayCollection
    public function getAllTranslations()
    {
        $translationsArray = array();
        $this->getRecursiveTranslations($translationsArray);
        $allTranslations = new ArrayCollection($translationsArray);
        return $allTranslations;
    }
Page