本文整理汇总了PHP中Question::return_header方法的典型用法代码示例。如果您正苦于以下问题:PHP Question::return_header方法的具体用法?PHP Question::return_header怎么用?PHP Question::return_header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Question
的用法示例。
在下文中一共展示了Question::return_header方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function return_header($feedback_type = null, $counter = null, $score = null)
{
if (!empty($score['comments']) || $score['score'] > 0) {
$score['revised'] = true;
} else {
$score['revised'] = false;
}
$header = parent::return_header($feedback_type, $counter, $score);
$header .= '<table class="' . $this->question_table_class . '" >
<tr>
<th>' . get_lang("Answer") . '</th>
</tr>';
return $header;
}
示例2:
/**
* {@inheritdoc}
*/
function return_header($feedback_type = null, $counter = null, $score = null, $show_media = false, $hideTitle = 0)
{
$header = parent::return_header($feedback_type, $counter, $score, $show_media, $hideTitle);
$header .= '<table class="' . $this->question_table_class . '">
<tr>
<th> </th>
</tr>
<tr>
<th>' . get_lang("Answer") . '</th>
</tr>
<tr>
<th> </th>
</tr>';
return $header;
}
示例3:
function return_header($feedback_type = null, $counter = null, $score = null)
{
$header = parent::return_header($feedback_type, $counter, $score);
$header .= '<table class="' . $this->question_table_class . '">
<tr>
<th>' . get_lang("Choice") . '</th>
<th>' . get_lang("ExpectedChoice") . '</th>
<th>' . get_lang("Answer") . '</th>';
$header .= '<th>' . get_lang("Comment") . '</th>';
$header .= '</tr>';
return $header;
}
示例4:
/**
* {@inheritdoc}
*/
function return_header($feedback_type = null, $counter = null, $score = null, $show_media = false, $hideTitle = 0)
{
$header = parent::return_header($feedback_type, $counter, $score, $show_media, $hideTitle);
$header .= '<table class="' . $this->question_table_class . '">
<tr>
<th>' . get_lang("Choice") . '</th>
<th>' . get_lang("ExpectedChoice") . '</th>
<th>' . get_lang("Answer") . '</i></th>';
if ($feedback_type != EXERCISE_FEEDBACK_TYPE_EXAM) {
$header .= '<th>' . get_lang("Comment") . '</th>';
} else {
$header .= '<th> </th>';
}
$header .= '</tr>';
return $header;
}
示例5: return_header
/**
* @param null $feedback_type
* @param null $counter
* @param null $score
* @return string
*/
public function return_header($feedback_type = null, $counter = null, $score = null)
{
$header = parent::return_header($feedback_type, $counter, $score);
$header .= '<table class="' . $this->question_table_class . '">';
$header .= '<tr>
<th>' . get_lang('ElementList') . '</th>
<th>' . get_lang('CorrespondsTo') . '</th>
</tr>';
return $header;
}
示例6:
/**
* {@inheritdoc}
*/
function return_header($feedback_type = null, $counter = null, $score = null, $show_media = false, $hideTitle = 0)
{
$header = parent::return_header($feedback_type, $counter, $score, $show_media, $hideTitle);
if ($this->type == MATCHING) {
$header .= '<table class="' . $this->question_table_class . '">';
$header .= '<tr>
<th>' . get_lang('ElementList') . '</th>
<th>' . get_lang('CorrespondsTo') . '</th>
</tr>';
}
return $header;
}