atk4\data\Field::isEditable PHP Method

isEditable() public method

Returns if field should be editable in UI.
public isEditable ( ) : boolean
return boolean
    public function isEditable()
    {
        return $this->read_only || $this->never_persist ? false : (isset($this->ui['editable']) ? $this->ui['editable'] : !$this->system);
    }