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


PHP QtiComponent::getTimeLimits方法代码示例

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


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

示例1: marshall

 protected function marshall(QtiComponent $component)
 {
     $element = static::getDOMCradle()->createElement($component->getQtiClassName());
     self::setDOMElementAttribute($element, 'identifier', $component->getIdentifier());
     self::setDOMElementAttribute($element, 'navigationMode', NavigationMode::getNameByConstant($component->getNavigationMode()));
     self::setDOMElementAttribute($element, 'submissionMode', SubmissionMode::getNameByConstant($component->getSubmissionMode()));
     foreach ($component->getPreConditions() as $preCondition) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($preCondition);
         $element->appendChild($marshaller->marshall($preCondition));
     }
     foreach ($component->getBranchRules() as $branchRule) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($branchRule);
         $element->appendChild($marshaller->marshall($branchRule));
     }
     $itemSessionControl = $component->getItemSessionControl();
     if (!empty($itemSessionControl)) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($itemSessionControl);
         $element->appendChild($marshaller->marshall($itemSessionControl));
     }
     $timeLimits = $component->getTimeLimits();
     if (!empty($timeLimits)) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($timeLimits);
         $element->appendChild($marshaller->marshall($timeLimits));
     }
     foreach ($component->getAssessmentSections() as $assessmentSection) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($assessmentSection);
         $element->appendChild($marshaller->marshall($assessmentSection));
     }
     foreach ($component->getTestFeedbacks() as $testFeedback) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($testFeedback);
         $element->appendChild($marshaller->marshall($testFeedback));
     }
     return $element;
 }
开发者ID:swapnilaptara,项目名称:tao-aptara-assess,代码行数:34,代码来源:TestPartMarshaller.php

示例2: marshall

 /**
  * Marshall a SectionPart object into a DOMElement object.
  * 
  * @param QtiComponent $component A SectionPart object.
  * @return DOMElement The according DOMElement object.
  */
 protected function marshall(QtiComponent $component)
 {
     $element = static::getDOMCradle()->createElement($component->getQtiClassName());
     self::setDOMElementAttribute($element, 'identifier', $component->getIdentifier());
     self::setDOMElementAttribute($element, 'required', $component->isRequired());
     self::setDOMElementAttribute($element, 'fixed', $component->isFixed());
     foreach ($component->getPreConditions() as $preCondition) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($preCondition);
         $element->appendChild($marshaller->marshall($preCondition));
     }
     foreach ($component->getBranchRules() as $branchRule) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($branchRule);
         $element->appendChild($marshaller->marshall($branchRule));
     }
     if ($component->getItemSessionControl() != null) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($component->getItemSessionControl());
         $element->appendChild($marshaller->marshall($component->getItemSessionControl()));
     }
     if ($component->getTimeLimits() != null) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($component->getTimeLimits());
         $element->appendChild($marshaller->marshall($component->getTimeLimits()));
     }
     return $element;
 }
开发者ID:swapnilaptara,项目名称:tao-aptara-assess,代码行数:30,代码来源:SectionPartMarshaller.php

示例3: marshall

 /**
  * Marshall an AssessmentTest object into a DOMElement object.
  * 
  * @param QtiComponent $component An AssessmentTest object.
  * @return DOMElement The according DOMElement object.
  * @throws MarshallingException
  */
 protected function marshall(QtiComponent $component)
 {
     $element = self::getDOMCradle()->createElement($component->getQtiClassName());
     self::setDOMElementAttribute($element, 'identifier', $component->getIdentifier());
     self::setDOMElementAttribute($element, 'title', $component->getTitle());
     $toolName = $component->getToolName();
     if (!empty($toolName)) {
         self::setDOMElementAttribute($element, 'toolName', $component->getToolName());
     }
     $toolVersion = $component->getToolVersion();
     if (!empty($toolVersion)) {
         self::setDOMElementAttribute($element, 'toolVersion', $component->getToolVersion());
     }
     if ($component->hasTimeLimits() === true) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($component->getTimeLimits());
         $element->appendChild($marshaller->marshall($component->getTimeLimits()));
     }
     foreach ($component->getOutcomeDeclarations() as $outcomeDeclaration) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($outcomeDeclaration);
         $element->appendChild($marshaller->marshall($outcomeDeclaration));
     }
     foreach ($component->getTestParts() as $part) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($part);
         $element->appendChild($marshaller->marshall($part));
     }
     $outcomeProcessing = $component->getOutcomeProcessing();
     if (!empty($outcomeProcessing)) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($outcomeProcessing);
         $element->appendChild($marshaller->marshall($outcomeProcessing));
     }
     foreach ($component->getTestFeedbacks() as $feedback) {
         $marshaller = $this->getMarshallerFactory()->createMarshaller($feedback);
         $element->appendChild($marshaller->marshall($feedback));
     }
     return $element;
 }
开发者ID:swapnilaptara,项目名称:tao-aptara-assess,代码行数:43,代码来源:AssessmentTestMarshaller.php


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