Craft\Neo_BlockModel::getFieldLayout PHP Méthode

getFieldLayout() public méthode

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