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.

48 lines
1.6 KiB

14 years ago
14 years ago
14 years ago
14 years ago
12 years ago
14 years ago
14 years ago
12 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
  1. <?php
  2. /**
  3. * DokuWiki Media Manager Popup
  4. *
  5. * @author Andreas Gohr <andi@splitbrain.org>
  6. * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
  7. */
  8. // must be run from within DokuWiki
  9. if (!defined('DOKU_INC')) die();
  10. @require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */
  11. header('X-UA-Compatible: IE=edge,chrome=1');
  12. ?><!DOCTYPE html>
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
  14. lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction'] ?>" class="popup no-js">
  15. <head>
  16. <meta charset="UTF-8" />
  17. <title>
  18. <?php echo hsc($lang['mediaselect'])?>
  19. [<?php echo strip_tags($conf['title'])?>]
  20. </title>
  21. <script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
  22. <?php tpl_metaheaders()?>
  23. <meta name="viewport" content="width=device-width,initial-scale=1" />
  24. <?php echo tpl_favicon(array('favicon', 'mobile')) ?>
  25. <?php tpl_includeFile('meta.html') ?>
  26. </head>
  27. <body>
  28. <!--[if IE 8 ]><div id="IE8"><![endif]-->
  29. <div id="media__manager" class="<?php echo tpl_classes(); ?>">
  30. <?php html_msgarea() ?>
  31. <div id="mediamgr__aside"><div class="pad">
  32. <h1><?php echo hsc($lang['mediaselect'])?></h1>
  33. <?php /* keep the id! additional elements are inserted via JS here */?>
  34. <div id="media__opts"></div>
  35. <?php tpl_mediaTree() ?>
  36. </div></div>
  37. <div id="mediamgr__content"><div class="pad">
  38. <?php tpl_mediaContent() ?>
  39. </div></div>
  40. </div>
  41. <!--[if lte IE 8 ]></div><![endif]-->
  42. </body>
  43. </html>