mirror of
https://github.com/moodle/moodle.git
synced 2025-02-19 07:41:02 +01:00
10 lines
336 B
PHP
10 lines
336 B
PHP
|
<?php //$Id$
|
||
|
|
||
|
$settings->add(new admin_setting_configtext('scorm_framewidth', get_string('width', 'scorm'),
|
||
|
get_string('framewidth', 'scorm'), '100%'));
|
||
|
|
||
|
$settings->add(new admin_setting_configtext('scorm_frameheight', get_string('height', 'scorm'),
|
||
|
get_string('frameheight', 'scorm'), 500));
|
||
|
|
||
|
?>
|