Craft\Neo_BlockModel::getFieldLayout PHP Method

getFieldLayout() public method

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