本文整理汇总了PHP中qtism\data\QtiComponent::getOutcomeRules方法的典型用法代码示例。如果您正苦于以下问题:PHP QtiComponent::getOutcomeRules方法的具体用法?PHP QtiComponent::getOutcomeRules怎么用?PHP QtiComponent::getOutcomeRules使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类qtism\data\QtiComponent
的用法示例。
在下文中一共展示了QtiComponent::getOutcomeRules方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: marshall
/**
* Marshall an OutcomeProcessing object into a DOMElement object.
*
* @param \qtism\data\QtiComponent $component An OutcomeProcessing object.
* @return \DOMElement The according DOMElement object.
* @throws \qtism\data\storage\xml\marshalling\MarshallingException
*/
protected function marshall(QtiComponent $component)
{
$element = self::getDOMCradle()->createElement($component->getQtiClassName());
foreach ($component->getOutcomeRules() as $outcomeRule) {
$marshaller = $this->getMarshallerFactory()->createMarshaller($outcomeRule);
$element->appendChild($marshaller->marshall($outcomeRule));
}
return $element;
}
示例2: getChildrenComponents
protected function getChildrenComponents(QtiComponent $component)
{
if ($component instanceof OutcomeIf || $component instanceof OutcomeElseIf || $component instanceof OutcomeElse) {
// OutcomeControl
return $component->getOutcomeRules()->getArrayCopy();
} else {
// OutcomeCondition
$returnValue = array($component->getOutcomeIf());
if (count($component->getOutcomeElseIfs()) > 0) {
$returnValue = array_merge($returnValue, $component->getOutcomeElseIfs()->getArrayCopy());
}
if ($component->getOutcomeElse() !== null) {
$returnValue[] = $component->getOutcomeElse();
}
return $returnValue;
}
}
示例3: getChildrenComponents
/**
* @see \qtism\data\storage\xml\marshalling\RecursiveMarshaller::getChildrenComponents()
*/
protected function getChildrenComponents(QtiComponent $component)
{
return $component->getOutcomeRules()->getArrayCopy();
}