2006-03-22 08:07:26 +00:00
|
|
|
<?php // $Id$
|
2006-01-19 08:22:01 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// //
|
|
|
|
// NOTICE OF COPYRIGHT //
|
|
|
|
// //
|
|
|
|
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
|
|
|
// http://moodle.org //
|
|
|
|
// //
|
2006-03-22 08:07:26 +00:00
|
|
|
// Copyright (C) 1999-onwards Moodle Pty Ltd http://moodle.com //
|
2006-01-19 08:22:01 +00:00
|
|
|
// //
|
|
|
|
// This program 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 2 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program 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: //
|
|
|
|
// //
|
|
|
|
// http://www.gnu.org/copyleft/gpl.html //
|
|
|
|
// //
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class data_field_menu extends data_field_base {
|
|
|
|
|
|
|
|
var $type = 'menu';
|
|
|
|
|
2006-03-22 08:07:26 +00:00
|
|
|
function data_field_menu($field=0, $data=0) {
|
|
|
|
parent::data_field_base($field, $data);
|
2006-01-19 08:22:01 +00:00
|
|
|
}
|
|
|
|
|
2006-03-22 08:07:26 +00:00
|
|
|
function display_add_field($recordid=0) {
|
2006-01-19 08:22:01 +00:00
|
|
|
|
2006-03-22 08:07:26 +00:00
|
|
|
if ($recordid){
|
|
|
|
$content = get_field('data_content', 'content', 'fieldid', $this->field->id, 'recordid', $recordid);
|
|
|
|
$content = trim($content);
|
|
|
|
} else {
|
|
|
|
$content = '';
|
2006-01-19 08:22:01 +00:00
|
|
|
}
|
2006-03-22 08:07:26 +00:00
|
|
|
|
2006-03-25 08:46:02 +00:00
|
|
|
$str = '<div title="'.$this->field->description.'">';
|
2006-03-22 08:07:26 +00:00
|
|
|
|
|
|
|
foreach (explode("\n",$this->field->param1) as $option) {
|
|
|
|
$option = trim($option);
|
|
|
|
$options[$option] = $option;
|
2006-01-19 08:22:01 +00:00
|
|
|
}
|
|
|
|
|
2006-03-22 08:07:26 +00:00
|
|
|
$str .= choose_from_menu($options, 'field_'.$this->field->id, $content,
|
|
|
|
get_string('menuchoose', 'data'), '', '', true, false);
|
2006-01-19 08:22:01 +00:00
|
|
|
|
2006-03-25 08:46:02 +00:00
|
|
|
$str .= '</div>';
|
2006-01-19 08:22:01 +00:00
|
|
|
|
2006-03-22 08:07:26 +00:00
|
|
|
return $str;
|
2006-01-19 08:22:01 +00:00
|
|
|
}
|
2006-03-22 08:07:26 +00:00
|
|
|
|
2006-01-19 08:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|