當前位置: 首頁>>代碼示例>>PHP>>正文


PHP QtiComponent::getXml方法代碼示例

本文整理匯總了PHP中qtism\data\QtiComponent::getXml方法的典型用法代碼示例。如果您正苦於以下問題:PHP QtiComponent::getXml方法的具體用法?PHP QtiComponent::getXml怎麽用?PHP QtiComponent::getXml使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在qtism\data\QtiComponent的用法示例。


在下文中一共展示了QtiComponent::getXml方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: appendChildren

 protected function appendChildren(DOMDocumentFragment $fragment, QtiComponent $component, $base = '')
 {
     try {
         $dom = $component->getXml();
         $node = $fragment->ownerDocument->importNode($dom->documentElement, true);
         $fragment->appendChild($node);
     } catch (RuntimeException $e) {
         $msg = "An error occured while rendering the XML content of the '" . $component->getQtiClassName() . "' external component.";
         throw new RenderingException($msg, RenderingException::UNKNOWN, $e);
     }
 }
開發者ID:swapnilaptara,項目名稱:tao-aptara-assess,代碼行數:11,代碼來源:ExternalQtiComponentRenderer.php

示例2: appendChildren

 protected function appendChildren(DOMDocumentFragment $fragment, QtiComponent $component, $base = '')
 {
     try {
         $dom = $component->getXml();
         $node = $fragment->ownerDocument->importNode($dom->documentElement, true);
         $node = Utils::anonimizeElement($node);
         $node->setAttribute('xmlns', 'http://www.w3.org/1998/Math/MathML');
         $fragment->appendChild($node);
     } catch (RuntimeException $e) {
         $msg = "An error occured while rendering the XML content of the 'MathML' external component.";
         throw new RenderingException($msg, RenderingException::UNKNOWN, $e);
     }
 }
開發者ID:swapnilaptara,項目名稱:tao-aptara-assess,代碼行數:13,代碼來源:MathRenderer.php

示例3: appendChildren

 /**
  * @see \qtism\runtime\rendering\markup\xhtml\ExternalQtiComponentRenderer::appendChildren()
  */
 protected function appendChildren(DOMDocumentFragment $fragment, QtiComponent $component, $base = '')
 {
     try {
         $dom = $component->getXml();
         $node = $fragment->ownerDocument->importNode($dom->documentElement, true);
         $nodeNamespaceUri = $node->namespaceURI;
         $node = Utils::anonimizeElement($node);
         if ($this->mustNamespaceOutput() === true) {
             $node->setAttribute('xmlns', $nodeNamespaceUri);
         }
         $fragment->appendChild($node);
     } catch (RuntimeException $e) {
         $msg = "An error occured while rendering the XML content of the 'MathML' external component.";
         throw new RenderingException($msg, RenderingException::UNKNOWN, $e);
     }
 }
開發者ID:nagyist,項目名稱:qti-sdk,代碼行數:19,代碼來源:MathRenderer.php

示例4: marshallChildrenKnown

 /**
  * @see \qtism\data\storage\xml\marshalling\RecursiveMarshaller::marshallChildrenKnown()
  */
 protected function marshallChildrenKnown(QtiComponent $component, array $elements)
 {
     $element = self::getDOMCradle()->createElement($component->getQtiClassName());
     foreach ($elements as $elt) {
         $element->appendChild($elt);
     }
     if ($component instanceof CustomOperator) {
         if ($component->hasClass() === true) {
             self::setDOMElementAttribute($element, 'class', $component->getClass());
         }
         if ($component->hasDefinition() === true) {
             self::setDOMElementAttribute($element, 'definition', $component->getDefinition());
         }
         // Now, we have to extract the LAX content of the custom operator and put it into
         // what we are putting out. (It is possible to have no LAX content at all, it is not mandatory).
         $xml = $component->getXml();
         $operatorElt = $xml->documentElement->cloneNode(true);
         $qtiOperatorElts = self::getChildElementsByTagName($operatorElt, array_merge(self::getOperators(), self::getExpressions()));
         foreach ($qtiOperatorElts as $qtiOperatorElt) {
             $operatorElt->removeChild($qtiOperatorElt);
         }
         Utils::importChildNodes($operatorElt, $element);
         Utils::importAttributes($operatorElt, $element);
     }
     return $element;
 }
開發者ID:nagyist,項目名稱:qti-sdk,代碼行數:29,代碼來源:OperatorMarshaller.php

示例5: marshall

 /**
  * Marshall a Math object into a DOMElement object.
  * 
  * @param QtiComponent $component A Math object.
  * @return DOMElement The according DOMElement object.
  * @throws MarshallingException
  */
 protected function marshall(QtiComponent $component)
 {
     return self::getDOMCradle()->importNode($component->getXml()->documentElement, true);
 }
開發者ID:swapnilaptara,項目名稱:tao-aptara-assess,代碼行數:11,代碼來源:MathMarshaller.php


注:本文中的qtism\data\QtiComponent::getXml方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。