ab5bd34d18
At the same time I also took the oppertunity to fix up the bugs within the feedback module that were making it un-usable
13 lines
272 B
PHP
13 lines
272 B
PHP
<?php
|
|
|
|
require_once $CFG->libdir.'/formslib.php';
|
|
|
|
define('FEEDBACK_ITEM_NAME_TEXTBOX_SIZE', 80);
|
|
define('FEEDBACK_ITEM_LABEL_TEXTBOX_SIZE', 20);
|
|
abstract class feedback_item_form extends moodleform {
|
|
function get_item_form() {
|
|
return $this->_form;
|
|
}
|
|
}
|
|
?>
|