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


PHP assQuestion::_getTotalRightAnswers方法代码示例

本文整理汇总了PHP中assQuestion::_getTotalRightAnswers方法的典型用法代码示例。如果您正苦于以下问题:PHP assQuestion::_getTotalRightAnswers方法的具体用法?PHP assQuestion::_getTotalRightAnswers怎么用?PHP assQuestion::_getTotalRightAnswers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在assQuestion的用法示例。


在下文中一共展示了assQuestion::_getTotalRightAnswers方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: initData

 /**
  *
  */
 protected function initData()
 {
     $rows = array();
     $total_of_answers = $this->question->getTotalAnswers();
     if ($total_of_answers) {
         $rows[] = array('result' => $this->lng->txt('qpl_assessment_total_of_answers'), 'value' => $total_of_answers);
         $rows[] = array('result' => $this->lng->txt('qpl_assessment_total_of_right_answers'), 'value' => assQuestion::_getTotalRightAnswers($this->question->getId()) * 100.0);
     } else {
         $this->disable('header');
     }
     $this->setData($rows);
 }
开发者ID:arlendotcn,项目名称:ilias,代码行数:15,代码来源:class.ilQuestionCumulatedStatisticsTableGUI.php

示例2: assessmentObject

 /**
  * show assessment data of object
  */
 function assessmentObject()
 {
     $this->tpl->addBlockFile("CONTENT", "content", "tpl.il_as_qpl_content.html", "Modules/TestQuestionPool");
     $this->tpl->addBlockFile("STATUSLINE", "statusline", "tpl.statusline.html");
     // catch feedback message
     ilUtil::sendInfo();
     include_once "./Modules/TestQuestionPool/classes/class.assQuestion.php";
     $question_title = assQuestion::_getTitle($_GET["q_id"]);
     $title = $this->lng->txt("statistics") . " - {$question_title}";
     if (!empty($title)) {
         $this->tpl->setVariable("HEADER", $title);
     }
     include_once "./Modules/TestQuestionPool/classes/class.assQuestion.php";
     $total_of_answers = assQuestion::_getTotalAnswers($_GET["q_id"]);
     $counter = 0;
     $color_class = array("tblrow1", "tblrow2");
     $this->tpl->addBlockFile("ADM_CONTENT", "adm_content", "tpl.il_as_qpl_assessment_of_questions.html", "Modules/TestQuestionPool");
     if (!$total_of_answers) {
         $this->tpl->setCurrentBlock("emptyrow");
         $this->tpl->setVariable("TXT_NO_ASSESSMENT", $this->lng->txt("qpl_assessment_no_assessment_of_questions"));
         $this->tpl->setVariable("COLOR_CLASS", $color_class[$counter % 2]);
         $this->tpl->parseCurrentBlock();
     } else {
         $this->tpl->setCurrentBlock("row");
         $this->tpl->setVariable("TXT_RESULT", $this->lng->txt("qpl_assessment_total_of_answers"));
         $this->tpl->setVariable("TXT_VALUE", $total_of_answers);
         $this->tpl->setVariable("COLOR_CLASS", $color_class[$counter % 2]);
         $counter++;
         $this->tpl->parseCurrentBlock();
         $this->tpl->setCurrentBlock("row");
         $this->tpl->setVariable("TXT_RESULT", $this->lng->txt("qpl_assessment_total_of_right_answers"));
         $this->tpl->setVariable("TXT_VALUE", sprintf("%2.2f", assQuestion::_getTotalRightAnswers($_GET["edit"]) * 100.0) . " %");
         $this->tpl->setVariable("COLOR_CLASS", $color_class[$counter % 2]);
         $this->tpl->parseCurrentBlock();
     }
     $this->tpl->setCurrentBlock("adm_content");
     $this->tpl->setVariable("TXT_QUESTION_TITLE", $question_title);
     $this->tpl->setVariable("TXT_RESULT", $this->lng->txt("result"));
     $this->tpl->setVariable("TXT_VALUE", $this->lng->txt("value"));
     $this->tpl->parseCurrentBlock();
 }
开发者ID:Walid-Synakene,项目名称:ilias,代码行数:44,代码来源:class.ilObjQuestionPoolGUI.php


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