mirror of
https://github.com/moodle/moodle.git
synced 2025-02-15 21:36:58 +01:00
104 lines
2.5 KiB
PHP
104 lines
2.5 KiB
PHP
<?PHP // $Id$
|
|
|
|
class feedback_item_base {
|
|
var $type;
|
|
/**
|
|
* The class constructor
|
|
*
|
|
*/
|
|
function feedback_item_base() {
|
|
$this->init();
|
|
}
|
|
|
|
/**
|
|
* Fake constructor to keep PHP5 happy
|
|
*
|
|
*/
|
|
function __construct() {
|
|
$this->feedback_item_base();
|
|
}
|
|
|
|
/**
|
|
* prints the item-related sequenz on the edit-item form
|
|
*
|
|
* @param $item the db-object from feedback_item
|
|
* @param $usehtmleditor defines whether the editor should be shown or not
|
|
*/
|
|
function show_edit($item, $usehtmleditor = false) {
|
|
}
|
|
|
|
/**
|
|
* returns an Array with three values(typ, name, XXX)
|
|
* XXX is also an Array (count of responses on type $this->type)
|
|
* each element is a structure (answertext, answercount)
|
|
* @param $item the db-object from feedback_item
|
|
* @param $groupid if given
|
|
* @param $courseid if given
|
|
* @return array
|
|
*/
|
|
function get_analysed($item, $groupid = false, $courseid = false) {
|
|
return array();
|
|
}
|
|
|
|
/**
|
|
* @param object $item the db-object from feedback_item
|
|
* @param string $value a item-related value from feedback_values
|
|
* @return string
|
|
*/
|
|
function get_printval($item, $value) {
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* @param $item the db-object from feedback_item
|
|
* @param string $itemnr
|
|
* @param integer $groupid
|
|
* @param integer $courseid
|
|
* @return integer the new itemnr
|
|
*/
|
|
function print_analysed($item, $itemnr = '', $groupid = false, $courseid = false) {
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @param object $worksheet a reference to the pear_spreadsheet-object
|
|
* @param integer $rowOffset
|
|
* @param object $item the db-object from feedback_item
|
|
* @param integer $groupid
|
|
* @param integer $courseid
|
|
* @return integer the new rowOffset
|
|
*/
|
|
function excelprint_item(&$worksheet, $rowOffset, $item, $groupid, $courseid = false) {
|
|
return $rowOffset;
|
|
}
|
|
|
|
function print_item($item, $value = false, $readonly = false, $edit = false, $highlightrequire = false){
|
|
}
|
|
|
|
function check_value($value, $item) {
|
|
return true;
|
|
}
|
|
|
|
function create_value($data) {
|
|
return '';
|
|
}
|
|
|
|
function get_presentation($data) {
|
|
return '';
|
|
}
|
|
|
|
function get_hasvalue() {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
//a dummy class to realize pagebreaks
|
|
class feedback_item_pagebreak extends feedback_item_base {
|
|
var $type = "pagebreak";
|
|
function init() {
|
|
|
|
}
|
|
}
|
|
|
|
?>
|