1<?php 2/** 3 * DokuWiki Default Template 4 * 5 * This is the template for the media manager popup 6 * 7 * You should leave the doctype at the very top - It should 8 * always be the very first line of a document. 9 * 10 * @link http://dokuwiki.org/templates 11 * @author Andreas Gohr <andi@splitbrain.org> 12 */ 13?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 14 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 15<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" 16 lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction'] ?>" class="popup"> 17<head> 18 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 19 <title> 20 <?php echo hsc($lang['mediaselect'])?> 21 [<?php echo strip_tags($conf['title'])?>] 22 </title> 23 <?php tpl_metaheaders()?> 24 <link rel="shortcut icon" href="<?php echo ml('favicon.ico') ?>" /> 25</head> 26 27<body> 28 <!--[if IE 6 ]><div id="IE6"><![endif]--><!--[if IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]--> 29 <div id="media__manager" class="dokuwiki"> 30 <?php html_msgarea() ?> 31 <div id="media__left"><div class="pad"> 32 <h1><?php echo hsc($lang['mediaselect'])?></h1> 33 34 <?php /* keep the id! additional elements are inserted via JS here */?> 35 <div id="media__opts"></div> 36 37 <?php tpl_mediaTree() ?> 38 </div></div> 39 40 <div id="media__right"><div class="pad"> 41 <?php tpl_mediaContent() ?> 42 </div></div> 43 </div> 44 <!--[if ( IE 6 | IE 7 | IE 8 ) ]></div><![endif]--> 45</body> 46</html> 47