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
9if (!defined('DOKU_INC')) die();
10@require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */
11
12?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
13 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
14<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
15  lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction'] ?>" class="popup">
16<head>
17    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
18    <title>
19        <?php echo hsc($lang['mediaselect'])?>
20        [<?php echo strip_tags($conf['title'])?>]
21    </title>
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_include('meta.html') ?>
26</head>
27
28<body>
29    <!--[if IE 6 ]><div id="IE6"><![endif]--><!--[if IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]-->
30    <div id="media__manager" class="dokuwiki">
31        <?php html_msgarea() ?>
32        <div id="mediamgr__aside"><div class="pad">
33            <h1><?php echo hsc($lang['mediaselect'])?></h1>
34
35            <?php /* keep the id! additional elements are inserted via JS here */?>
36            <div id="media__opts"></div>
37
38            <?php tpl_mediaTree() ?>
39        </div></div>
40
41        <div id="mediamgr__content"><div class="pad">
42            <?php tpl_mediaContent() ?>
43        </div></div>
44    </div>
45    <!--[if ( IE 6 | IE 7 | IE 8 ) ]></div><![endif]-->
46</body>
47</html>
48