2005-04-29 14:13:37 +00:00
|
|
|
<?php
|
2006-02-03 08:04:57 +00:00
|
|
|
if (!isset($CFG->scorm_frameheight)) {
|
2005-11-15 08:10:26 +00:00
|
|
|
$CFG->scorm_frameheight = '500';
|
2005-05-09 09:50:37 +00:00
|
|
|
}
|
2006-02-03 08:04:57 +00:00
|
|
|
if (!isset($CFG->scorm_framewidth)) {
|
2005-11-15 08:10:26 +00:00
|
|
|
$CFG->scorm_framewidth = '100%';
|
2005-04-29 14:13:37 +00:00
|
|
|
}
|
|
|
|
?>
|
2005-05-09 09:50:37 +00:00
|
|
|
|
2007-01-04 21:32:36 +00:00
|
|
|
<form method="post" action="module.php" id="form">
|
2007-04-20 07:54:42 +00:00
|
|
|
<div>
|
2007-01-13 20:13:58 +00:00
|
|
|
<input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>" />
|
2004-06-21 11:27:52 +00:00
|
|
|
|
2004-09-12 17:34:35 +00:00
|
|
|
<table cellpadding="9" cellspacing="0" >
|
2005-05-09 09:50:37 +00:00
|
|
|
<tr valign="top">
|
|
|
|
<td align="right">scorm_framewidth:</td>
|
|
|
|
<td>
|
2005-11-15 08:10:26 +00:00
|
|
|
<input type="text" name="scorm_framewidth" value="<?php echo $CFG->scorm_framewidth ?>" size="5" />
|
2005-05-09 09:50:37 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2005-05-23 06:56:10 +00:00
|
|
|
<?php print_string("framewidth", "scorm") ?>
|
2005-05-09 09:50:37 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2005-04-29 14:13:37 +00:00
|
|
|
<tr valign="top">
|
|
|
|
<td align="right">scorm_frameheight:</td>
|
|
|
|
<td>
|
2005-11-15 08:10:26 +00:00
|
|
|
<input type="text" name="scorm_frameheight" value="<?php echo $CFG->scorm_frameheight ?>" size="5" />
|
2005-04-29 14:13:37 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2005-05-23 06:56:10 +00:00
|
|
|
<?php print_string("frameheight", "scorm") ?>
|
2005-04-29 14:13:37 +00:00
|
|
|
</td>
|
2004-07-19 14:53:43 +00:00
|
|
|
</tr>
|
2004-06-21 11:27:52 +00:00
|
|
|
<tr>
|
2004-09-12 17:34:35 +00:00
|
|
|
<td colspan="3" align="center">
|
2005-05-16 23:41:58 +00:00
|
|
|
<input type="submit" value="<?php print_string("savechanges") ?>" />
|
2004-07-19 14:53:43 +00:00
|
|
|
</td>
|
2004-06-21 11:27:52 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2007-04-20 07:54:42 +00:00
|
|
|
</div>
|
2004-06-21 11:27:52 +00:00
|
|
|
</form>
|