app\models\Menu::isEditable PHP Méthode

isEditable() public méthode

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