芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/question/behaviour/interactive/renderer.php
. /** * Renderer for outputting parts of a question belonging to the interactive * behaviour. * * @package qbehaviour * @subpackage interactive * @copyright 2009 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Interactive behaviour renderer. * * @copyright 2009 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class qbehaviour_interactive_renderer extends qbehaviour_renderer { public function controls(question_attempt $qa, question_display_options $options) { if ($options->readonly === qbehaviour_interactive::TRY_AGAIN_VISIBLE || $options->readonly === qbehaviour_interactive::TRY_AGAIN_VISIBLE_READONLY) { // We are in the try again state, so no submit button. return ''; } return $this->submit_button($qa, $options); } public function feedback(question_attempt $qa, question_display_options $options) { // Show the Try again button if we are in try-again state. if (!$qa->get_state()->is_active() || ($options->readonly !== qbehaviour_interactive::TRY_AGAIN_VISIBLE && $options->readonly !== qbehaviour_interactive::TRY_AGAIN_VISIBLE_READONLY)) { return ''; } $attributes = array( 'type' => 'submit', 'id' => $qa->get_behaviour_field_name('tryagain'), 'name' => $qa->get_behaviour_field_name('tryagain'), 'value' => get_string('tryagain', 'qbehaviour_interactive'), 'class' => 'submit btn', ); if ($options->readonly === qbehaviour_interactive::TRY_AGAIN_VISIBLE_READONLY) { // This means the question really was rendered with read-only option. $attributes['disabled'] = 'disabled'; } $output = html_writer::empty_tag('input', $attributes); if (empty($attributes['disabled'])) { $this->page->requires->js_init_call('M.core_question_engine.init_submit_button', array($attributes['id'], $qa->get_slot())); } return $output; } }