diff --git a/main/newscorm/lp_list.php b/main/newscorm/lp_list.php index d4e96bd600..7c94d04a17 100644 --- a/main/newscorm/lp_list.php +++ b/main/newscorm/lp_list.php @@ -119,7 +119,8 @@ if(api_is_allowed_to_edit()) UPLOAD SECTION - displays file upload box --------------------------------------*/ 'scormbuilder '.get_lang("UploadScorm").''. - '' . + '' . + ''.str_repeat(' ',10).'scormbuilder '.get_lang("PowerPointConvert").''. " "; diff --git a/main/upload/upload_ppt.php b/main/upload/upload_ppt.php new file mode 100644 index 0000000000..806ba82b58 --- /dev/null +++ b/main/upload/upload_ppt.php @@ -0,0 +1,54 @@ + + */ +/** + * First, initialise the script + */ +// name of the language file which needs to be included +// 'inc.php' is automatically appended to the file name +$langFile = "document"; //the document file is loaded because most of the upload vocab relates to the document tool +// global settings initialisation +// also provides access to main api (inc/lib/main_api.lib.php) +include("../inc/global.inc.php"); + +$interbreadcrumb[]= array ("url"=>"../newscorm/lp_controller.php?action=list", "name"=> get_lang(TOOL_LEARNPATH)); +$nameTools = get_lang("FileUpload"); +Display :: display_header($nameTools); + + +// check access permissions (edit permission is needed to add a document or a LP) +$is_allowed_to_edit = api_is_allowed_to_edit(); + +if(!$is_allowed_to_edit){ + api_not_allowed(); +} + +?> + + + +1. Browse your hard disk to find any .ppt or .odp file
2. Upload it to Oogie. It will tranform it into a Scorm learning path.
3. You will then be allowed to add audio comments on each slide and inserts test between slides for evaluation"; + +Display::display_normal_message($message); + +echo '

'; + +echo '
'; +echo '  

  '; +echo '
'; + + +/* +============================================================================== + FOOTER +============================================================================== +*/ +Display::display_footer(); + +?> \ No newline at end of file