Pimcore\Model\Element\AbstractElement::isLocked PHP Метод

isLocked() публичный Метод

Returns true if the element is locked
public isLocked ( ) : boolean
Результат boolean
    public function isLocked()
    {
        if ($this->getLocked()) {
            return true;
        }
        // check for inherited
        return $this->getDao()->isLocked();
    }