Pimcore\Model\Element\AbstractElement::isLocked PHP Method

isLocked() public method

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