form.document.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php //$id: $
  2. /**
  3. * Display part of the document sub-process for upload. This script MUST BE included by upload/index.php
  4. * as it prepares most of the variables needed here.
  5. * @package dokeos.upload
  6. * @author Yannick Warnier <ywarnier@beeznest.org>
  7. */
  8. /**
  9. * Just display the form needed to upload a SCORM and give its settings
  10. */
  11. $noPHP_SELF = false;
  12. $nameTools = get_lang("FileUpload");
  13. $interbreadcrumb[]= array ("url"=>"../newscorm/lp_controller.php?action=list", "name"=> get_lang(TOOL_DOCUMENT));
  14. Display::display_header($nameTools,"Doc");
  15. //show the title
  16. api_display_tool_title($nameTools.$add_group_to_title);
  17. ?>
  18. <div id="dynamic_div" style="display:block;margin-left:40%;margin-top:10px;height:50px;">
  19. </div>
  20. <div id="upload_form_div" name="form_div" style="display:block;">
  21. <?php
  22. /*
  23. <div id="folderselector">
  24. //form to select directory
  25. //$folders = DocumentManager::get_all_document_folders($_course,$to_group_id,$is_allowed_to_edit);
  26. //include_once('../document/document.inc.php'); //this should be removed when the functions there are moved to inc/lib
  27. //echo(build_directory_selector($folders,$path,$group_properties['directory']));
  28. </div>
  29. */
  30. ?>
  31. <form method="POST" action="upload.php" id="upload_form" enctype="multipart/form-data" onsubmit="myUpload.start('dynamic_div','progressbar_green.gif','<?php echo(get_lang('Uploading'));?>','upload_form_div');">
  32. <input type="hidden" name="curdirpath" value="<?php echo $path; ?>">
  33. <input type="hidden" name="tool" value="<?php echo $my_tool; ?>">
  34. <input type="file" name="user_file">
  35. <input type="submit" name="submit" value="Upload">
  36. </form>
  37. </div>
  38. <br/>
  39. <?php
  40. /*
  41. ==============================================================================
  42. FOOTER
  43. ==============================================================================
  44. */
  45. Display::display_footer();
  46. ?>