Habari\Block::save_block PHP Method

save_block() public method

Display a standard success message upon saving the form
public save_block ( FormUI $form ) : boolean
$form FormUI The form that will be saved
return boolean Returning false tells the form that the save was handled
    public function save_block(FormUI $form)
    {
        $form->save();
        return false;
    }