Networking\InitCmsBundle\Model\Page::getAllTranslations PHP Method

getAllTranslations() public method

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