本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}