1<?php 2/** 3 * DokuWiki Media Manager Popup 4 * 5 * @author Andreas Gohr <andi@splitbrain.org> 6 */ 7?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 8 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 9<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" 10 lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction'] ?>" class="popup"> 11<head> 12 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 13 <title> 14 <?php echo hsc($lang['mediaselect'])?> 15 [<?php echo strip_tags($conf['title'])?>] 16 </title> 17 <?php tpl_metaheaders()?> 18 <link rel="shortcut icon" href="<?php echo ml('favicon.ico') ?>" /> 19</head> 20 21<body> 22 <!--[if IE 6 ]><div id="IE6"><![endif]--><!--[if IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]--> 23 <div id="media__manager" class="dokuwiki"> 24 <?php html_msgarea() ?> 25 <div id="mediamgr__aside"><div class="pad"> 26 <h1><?php echo hsc($lang['mediaselect'])?></h1> 27 28 <?php /* keep the id! additional elements are inserted via JS here */?> 29 <div id="media__opts"></div> 30 31 <?php tpl_mediaTree() ?> 32 </div></div> 33 34 <div id="mediamgr__content"><div class="pad"> 35 <?php tpl_mediaContent() ?> 36 </div></div> 37 </div> 38 <!--[if ( IE 6 | IE 7 | IE 8 ) ]></div><![endif]--> 39</body> 40</html> 41