2009-11-01 12:22:45 +00:00
|
|
|
<?php
|
2007-08-31 04:05:11 +00:00
|
|
|
|
2010-05-13 02:02:05 +00:00
|
|
|
if (!defined('MOODLE_INTERNAL')) {
|
|
|
|
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
|
|
|
}
|
|
|
|
|
2007-08-31 04:05:11 +00:00
|
|
|
require_once($CFG->libdir.'/formslib.php');
|
|
|
|
|
|
|
|
class note_edit_form extends moodleform {
|
|
|
|
|
|
|
|
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'));
|
|
|
|
|
2010-08-16 14:32:00 +00: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');
|
2007-08-31 04:05:11 +00:00
|
|
|
$mform->setType('course', PARAM_INT);
|
|
|
|
|
2008-08-21 21:40:29 +00:00
|
|
|
$mform->addElement('hidden', 'userid');
|
2007-08-31 04:35:42 +00:00
|
|
|
$mform->setType('user', PARAM_INT);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|