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


PHP QtiComponent::getOutcomeIdentifier方法代码示例

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


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

示例1: marshall

 /**
  * Marshall a TestFeedbackRef object to its XML counterpart.
  *
  * @param \qtism\data\QtiComponent $component
  * @return \DOMElement
  */
 public function marshall(QtiComponent $component)
 {
     $element = self::getDOMCradle()->createElement('testFeedbackRef');
     self::setDOMElementAttribute($element, 'identifier', $component->getIdentifier());
     self::setDOMElementAttribute($element, 'outcomeIdentifier', $component->getOutcomeIdentifier());
     self::setDOMElementAttribute($element, 'access', TestFeedbackAccess::getNameByConstant($component->getAccess()));
     self::setDOMElementAttribute($element, 'showHide', ShowHide::getNameByConstant($component->getShowHide()));
     self::setDOMElementAttribute($element, 'href', $component->getHref());
     return $element;
 }
开发者ID:nagyist,项目名称:qti-sdk,代码行数:16,代码来源:TestFeedbackRefMarshaller.php

示例2: marshall

 /**
  * Marshall a ModalFeedbackRule object to its XML counterpart.
  *
  * @param \qtism\data\QtiComponent $component
  * @return \DOMElement
  */
 public function marshall(QtiComponent $component)
 {
     $element = self::getDOMCradle()->createElement('modalFeedbackRule');
     self::setDOMElementAttribute($element, 'outcomeIdentifier', $component->getOutcomeIdentifier());
     self::setDOMElementAttribute($element, 'showHide', ShowHide::getNameByConstant($component->getShowHide()));
     self::setDOMElementAttribute($element, 'identifier', $component->getIdentifier());
     if ($component->hasTitle() === true) {
         self::setDOMElementAttribute($element, 'title', $component->getTitle());
     }
     return $element;
 }
开发者ID:nagyist,项目名称:qti-sdk,代码行数:17,代码来源:ModalFeedbackRuleMarshaller.php

示例3: marshallChildrenKnown

 protected function marshallChildrenKnown(QtiComponent $component, array $elements)
 {
     $element = self::getDOMCradle()->createElement($component->getQtiClassName());
     self::setDOMElementAttribute($element, 'outcomeIdentifier', $component->getOutcomeIdentifier());
     self::setDOMElementAttribute($element, 'identifier', $component->getIdentifier());
     self::setDOMElementAttribute($element, 'showHide', ShowHide::getNameByConstant($component->getShowHide()));
     if ($component->hasTitle() === true) {
         self::setDOMElementAttribute($element, 'title', $component->getTitle());
     }
     foreach ($elements as $e) {
         $element->appendChild($e);
     }
     return $element;
 }
开发者ID:swapnilaptara,项目名称:tao-aptara-assess,代码行数:14,代码来源:ModalFeedbackMarshaller.php

示例4: marshall

 /**
  * Marshall a TestFeedback object into a DOMElement object.
  * 
  * @param QtiComponent $component A TestFeedback object.
  * @return DOMElement The according DOMElement object.
  */
 protected function marshall(QtiComponent $component)
 {
     $element = static::getDOMCradle()->createElement($component->getQtiClassName());
     $access = $component->getAccess() == TestFeedbackAccess::AT_END ? 'atEnd' : 'during';
     $showHide = $component->getShowHide() == ShowHide::SHOW ? 'show' : 'hide';
     self::setDOMElementAttribute($element, 'access', $access);
     self::setDOMElementAttribute($element, 'outcomeIdentifier', $component->getOutcomeIdentifier());
     self::setDOMElementAttribute($element, 'showHide', $showHide);
     self::setDOMElementAttribute($element, 'identifier', $component->getIdentifier());
     $title = $component->getTitle();
     if (!empty($title)) {
         self::setDOMElementAttribute($element, 'title', $title);
     }
     $flowStatic = static::getDOMCradle()->createDocumentFragment();
     $flowStatic->appendXML($component->getContent());
     $element->appendChild($flowStatic);
     return $element;
 }
开发者ID:swapnilaptara,项目名称:tao-aptara-assess,代码行数:24,代码来源:TestFeedbackMarshaller.php

示例5: identifierMatches

 /**
  * Whether or not the 'outcomeIdentifier'/'templateIdentifier' set on a templateElement/feedbackElement/choice
  * matches its 'identifier' attribute.
  *
  * @param QtiComponent $component A TemplateElement or FeedbackElement or Choice element.
  * @return boolean
  */
 protected function identifierMatches(QtiComponent $component)
 {
     $variableIdentifier = $component instanceof FeedbackElement || $component instanceof ModalFeedback ? $component->getOutcomeIdentifier() : $component->getTemplateIdentifier();
     $identifier = new Identifier($component->getIdentifier());
     $showHide = $component->getShowHide();
     $state = $this->getState();
     $matches = false;
     if (($val = $state[$variableIdentifier]) !== null) {
         if ($val instanceof Scalar) {
             $matches = $val->equals($identifier);
         } elseif ($val instanceof Container) {
             $matches = $val->contains($identifier);
         }
     }
     return $matches;
 }
开发者ID:hutnikau,项目名称:qti-sdk,代码行数:23,代码来源:AbstractMarkupRenderingEngine.php

示例6: identifierMatches

 /**
  * Whether or not the 'outcomeIdentifier'/'templateIdentifier' set on a templateElement/feedbackElement/choice
  * matches its 'identifier' attribute.
  * 
  * @param QtiComponent $component A TemplateElement or FeedbackElement or Choice element.
  * @return boolean
  */
 protected function identifierMatches(QtiComponent $component)
 {
     $variableIdentifier = $component instanceof FeedbackElement || $component instanceof ModalFeedback ? $component->getOutcomeIdentifier() : $component->getTemplateIdentifier();
     $identifier = $component->getIdentifier();
     $showHide = $component->getShowHide();
     $state = $this->getState();
     return ($val = $state[$variableIdentifier]) !== null && $val === $identifier;
 }
开发者ID:swapnilaptara,项目名称:tao-aptara-assess,代码行数:15,代码来源:AbstractMarkupRenderingEngine.php


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