app\models\Menu::isEditable PHP 메소드

isEditable() 공개 메소드

public isEditable ( ) : boolean
리턴 boolean
    public function isEditable()
    {
        // Protect the root menu from deletion
        if ('root' == $this->name) {
            return false;
        }
        return true;
    }