Encore\Admin\Form\Field\File::isDeleteRequest PHP Method

isDeleteRequest() public method

If is delete request then delete original image.
public isDeleteRequest ( ) : boolean
return boolean
    public function isDeleteRequest()
    {
        $action = Input::get($this->id . '_action');
        if ($action == static::ACTION_REMOVE) {
            $this->destroy();
            return true;
        }
        return false;
    }