You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
1.0 KiB

<?php
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
function prefs_scorm_list()
{
return [
'scorm_enabled' => [
'name' => tra('SCORM support'),
'description' => tra('Handle SCORM package files on upload. SCORM is a standard used in learning management systems.'),
'dependencies' => [
'feature_file_galleries',
'feature_trackers',
],
'type' => 'flag',
'default' => 'n',
],
'scorm_tracker' => [
'name' => tra('SCORM Tracker'),
'description' => tra('The ID number of the tracker used to store SCORM metadata'),
'type' => 'text',
'filter' => 'int',
'default' => 0,
'size' => 5,
'profile_reference' => 'tracker',
],
];
}