You are here

imce-page.tpl.php in IMCE 6

Same filename and directory in other branches
  1. 6.2 tpl/imce-page.tpl.php
  2. 7 tpl/imce-page.tpl.php

File

tpl/imce-page.tpl.php
View source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php

print $GLOBALS['language']->language;
?>" xml:lang="<?php

print $GLOBALS['language']->language;
?>">

<head>
  <title><?php

print t('File Browser');
?></title>
  <?php

if (isset($_GET['app'])) {
  drupal_add_js(drupal_get_path('module', 'imce') . '/js/imce_set_app.js');
}
?>
  <?php

print drupal_get_html_head();
?>
  <?php

print drupal_get_css();
?>
  <?php

$vars['scripts'] = drupal_get_js('header');
?>
  <?php

function_exists('jquery_update_preprocess_page') && jquery_update_preprocess_page($vars);
?>
  <?php

print $vars['scripts'];
?>
  <style media="all" type="text/css">/*Quick-override*/</style>
</head>

<body class="imce">
<div id="imce-messages"><?php

print theme('status_messages');
?></div>
<?php

print $content;
print drupal_get_js('footer');
?>
</body>

</html>