Craft\Neo_BlockModel::getFieldLayout PHP 메소드

getFieldLayout() 공개 메소드

Returns the field layout the block is associated with.
public getFieldLayout ( ) : craft\FieldLayoutModel | null
리턴 craft\FieldLayoutModel | null
    public function getFieldLayout()
    {
        $blockType = $this->getType();
        return $blockType ? $blockType->getFieldLayout() : null;
    }