Pimcore\Model\Element\AbstractElement::isLocked PHP Méthode

isLocked() public méthode

Returns true if the element is locked
public isLocked ( ) : boolean
Résultat boolean
    public function isLocked()
    {
        if ($this->getLocked()) {
            return true;
        }
        // check for inherited
        return $this->getDao()->isLocked();
    }