Moodle_form: Edit or new?

Re: Moodle_form: Edit or new?

by Iban Cardona i Subiela -
Number of replies: 0

Hello Davo,

My form is inside a module. So, finally, I decided to do this:

if (is_numeric($this->_instance) &&
$this->_instance &&
$mymodule =$DB->get_record("mymodule", array("id"=>$this->_instance))) {
        $mform->addElement('header', 'general', 'Editing');
} else {
       $mform->addElement('header', 'general', 'Creating');
}


Best regards,
Iban Cardona.