2009-11-01 12:22:45 +00:00
|
|
|
<?php
|
2014-07-10 16:16:26 +08:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
2007-08-31 04:05:11 +00:00
|
|
|
|
2010-05-13 02:02:05 +00:00
|
|
|
if (!defined('MOODLE_INTERNAL')) {
|
2014-07-10 16:16:26 +08:00
|
|
|
die('Direct access to this script is forbidden.'); // It must be included from a Moodle page.
|
2010-05-13 02:02:05 +00:00
|
|
|
}
|
|
|
|
|
2007-08-31 04:05:11 +00:00
|
|
|
require_once($CFG->libdir.'/formslib.php');
|
|
|
|
|
|
|
|
class note_edit_form extends moodleform {
|
|
|
|
|
2014-07-10 16:16:26 +08:00
|
|
|
/**
|
|
|
|
* Define the form for editing notes
|
|
|
|
*/
|
|
|
|
public function definition() {
|
2010-08-16 14:32:00 +00:00
|
|
|
$mform =& $this->_form;
|
2007-08-31 04:05:11 +00:00
|
|
|
$mform->addElement('header', 'general', get_string('note', 'notes'));
|
|
|
|
|
2014-07-10 16:16:26 +08:00
|
|
|
$mform->addElement('textarea', 'content', get_string('content', 'notes'), array('rows' => 15, 'cols' => 40));
|
2007-08-31 04:05:11 +00:00
|
|
|
$mform->setType('content', PARAM_RAW);
|
|
|
|
$mform->addRule('content', get_string('nocontent', 'notes'), 'required', null, 'client');
|
|
|
|
|
2010-08-16 14:32:00 +00:00
|
|
|
$mform->addElement('select', 'publishstate', get_string('publishstate', 'notes'), note_get_state_names());
|
2007-08-31 04:05:11 +00:00
|
|
|
$mform->setDefault('publishstate', NOTES_STATE_PUBLIC);
|
|
|
|
$mform->setType('publishstate', PARAM_ALPHA);
|
2010-08-16 14:32:00 +00:00
|
|
|
$mform->addHelpButton('publishstate', 'publishstate', 'notes');
|
2007-08-31 04:05:11 +00:00
|
|
|
|
|
|
|
$this->add_action_buttons();
|
|
|
|
|
2008-08-21 21:40:29 +00:00
|
|
|
$mform->addElement('hidden', 'courseid');
|
2013-06-04 17:59:24 +08:00
|
|
|
$mform->setType('courseid', PARAM_INT);
|
2007-08-31 04:05:11 +00:00
|
|
|
|
2008-08-21 21:40:29 +00:00
|
|
|
$mform->addElement('hidden', 'userid');
|
2013-06-04 17:59:24 +08:00
|
|
|
$mform->setType('userid', PARAM_INT);
|
2007-08-31 04:35:42 +00:00
|
|
|
|
2008-08-21 21:40:29 +00:00
|
|
|
$mform->addElement('hidden', 'id');
|
|
|
|
$mform->setType('id', PARAM_INT);
|
2007-08-31 04:05:11 +00:00
|
|
|
}
|
|
|
|
}
|