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