Eccube\Repository\PageLayoutRepository::newPageLayout PHP Method

newPageLayout() public method

public newPageLayout ( Eccube\Entity\Master\DeviceType $DeviceType )
$DeviceType Eccube\Entity\Master\DeviceType
    public function newPageLayout(DeviceType $DeviceType)
    {
        $PageLayout = new \Eccube\Entity\PageLayout();
        $PageLayout->setDeviceType($DeviceType)->setEditFlg(PageLayout::EDIT_FLG_USER);
        return $PageLayout;
    }