form.document.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Display part of the document sub-process for upload. This script MUST BE included by upload/index.php
  5. * as it prepares most of the variables needed here.
  6. * @package chamilo.upload
  7. * @author Yannick Warnier <ywarnier@beeznest.org>
  8. */
  9. /**
  10. * Just display the form needed to upload a SCORM and give its settings
  11. */
  12. $nameTools = get_lang('FileUpload');
  13. $interbreadcrumb[] = array("url"=>"../lp/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. <form method="POST" action="upload.php" id="upload_form" enctype="multipart/form-data" onsubmit="javascript: myUpload.start('dynamic_div','progressbar_green.gif','<?php echo(get_lang('Uploading', '')); ?>','upload_form_div');">
  22. <input type="hidden" name="curdirpath" value="<?php echo $path; ?>">
  23. <input type="hidden" name="tool" value="<?php echo $my_tool; ?>">
  24. <input type="file" name="user_file">
  25. <input type="submit" name="submit" value="Upload">
  26. </form>
  27. </div>
  28. <br/>
  29. <?php
  30. /*
  31. FOOTER
  32. */
  33. Display::display_footer();