Newscoop\Entity\Repository\ThemeRepository::install PHP 메소드

install() 공개 메소드

Install theme
public install ( $offset ) : void
리턴 void
    public function install($offset)
    {
        $theme = $this->loader->find($offset);
        $theme->setInstalledVersion();
        $em = $this->getEntityManager();
        $em->persist($theme);
    }