1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $GLOBALS['language']->language; ?>" xml:lang="<?php print $GLOBALS['language']->language; ?>" class="imce">
|
4
|
|
5
|
<head>
|
6
|
<title><?php print t('File Browser'); ?></title>
|
7
|
<meta name="robots" content="noindex,nofollow" />
|
8
|
<?php if (isset($_GET['app'])): drupal_add_js(drupal_get_path('module', 'imce') .'/js/imce_set_app.js'); endif;?>
|
9
|
<?php print drupal_get_html_head(); ?>
|
10
|
<?php print drupal_get_css(); ?>
|
11
|
<?php print drupal_get_js('header'); ?>
|
12
|
<style media="all" type="text/css"></style>
|
13
|
</head>
|
14
|
|
15
|
<body class="imce">
|
16
|
<div id="imce-messages"><?php print theme('status_messages'); ?></div>
|
17
|
<?php print $content; ?>
|
18
|
<?php print drupal_get_js('footer'); ?>
|
19
|
</body>
|
20
|
|
21
|
</html>
|