当前位置: 首页>>代码示例>>PHP>>正文


PHP Question::return_header方法代码示例

本文整理汇总了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;
 }
开发者ID:omaoibrahim,项目名称:chamilo-lms,代码行数:14,代码来源:freeanswer.class.php

示例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>&nbsp;</th>
			</tr>
			<tr>
                <th>' . get_lang("Answer") . '</th>
			</tr>
			<tr>
                <th>&nbsp;</th>
			</tr>';
        return $header;
    }
开发者ID:ilosada,项目名称:chamilo-lms-icpna,代码行数:18,代码来源:oral_expression.class.php

示例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;
    }
开发者ID:KRCM13,项目名称:chamilo-lms,代码行数:12,代码来源:multiple_answer.class.php

示例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>&nbsp;</th>';
        }
        $header .= '</tr>';
        return $header;
    }
开发者ID:ilosada,项目名称:chamilo-lms-icpna,代码行数:19,代码来源:multiple_answer_combination.class.php

示例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;
 }
开发者ID:omaoibrahim,项目名称:chamilo-lms,代码行数:16,代码来源:matching.class.php

示例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;
 }
开发者ID:ilosada,项目名称:chamilo-lms-icpna,代码行数:15,代码来源:matching.class.php


注:本文中的Question::return_header方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。