manifest_qti_2p1.tmpl.php
来自「ATutor是一个学习管理系统(LCMS/LMS), 为教师和学生建立一个网络教」· PHP 代码 · 共 29 行
PHP
29 行
<<?php echo '?'; ?>xml version="1.0" encoding="<?php echo $this->encoding; ?>"<?php echo '?'; ?>><manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p2" xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:imsqti="http://www.imsglobal.org/xsd/imsqti_v2p1" identifier="MANIFEST-<?php echo md5(time()); ?>" xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p2 http://www.imsglobal.org/xsd/imscp_v1p2.xsd http://www.imsglobal.org/xsd/imsmd_v1p2 http://www.imsglobal.org/xsd/imsmd_v1p2p2.xsd http://www.imsglobal.org/xsd/imsqti_v2p1 http://www.imsglobal.org/xsd/imsqti_v2p1.xsd"> <metadata> <schema>IMS Content</schema> <schemaversion>1.2</schemaversion> </metadata> <organizations/> <resources> <?php foreach ($this->resources as $resource): ?> <resource identifier="RES-<?php echo md5($resource['href']); ?>" type="imsqti_item_xmlv2p1" href="<?php echo $resource['href']; ?>"> <metadata/> <file href="<?php echo $resource['href']; ?>"/> <?php foreach ($resource['dependencies'] as $dependency_href): ?> <dependency identifierref="<?php echo md5($dependency_href); ?>"/> <?php endforeach; ?> </resource> <?php endforeach; ?> <!-- dependancies go here --> <?php foreach ($this->dependencies as $dependency_href): ?> <resource identifier="<?php echo md5($dependency_href); ?>" type="webcontent"> <metadata/> <file href="resources/<?php echo $dependency_href; ?>"/> </resource> <?php endforeach; ?> </resources></manifest>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?