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?> 14<?php 15/** 16<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 17 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 18<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr"> 19 */ 20?> 21<!DOCTYPE html> 22<html lang="<?php echo $conf['lang']?>" dir="ltr"> 23<head> 24 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 25 <title> 26 <?php echo hsc($lang['mediaselect'])?> 27 [<?php echo strip_tags($conf['title'])?>] 28 </title> 29 <?php tpl_metaheaders()?> 30 <link rel="shortcut icon" href="<?php echo tpl_basedir()?>images/favicon.ico" /> 31</head> 32 33<body> 34<div id="media__manager" class="dokuwiki"> 35 <div id="media__left"> 36 <?php html_msgarea()?> 37 <h1><?php echo hsc($lang['mediaselect'])?></h1> 38 39 <?php /* keep the id! additional elements are inserted via JS here */?> 40 <div id="media__opts"></div> 41 42 <?php tpl_mediaTree() ?> 43 </div> 44 45 <div id="media__right"> 46 <?php tpl_mediaContent() ?> 47 </div> 48</div> 49</body> 50</html> 51