web/drupal/modules/imce/tpl/imce-page.tpl.php
branchdrupal
changeset 74 0ff3ba646492
equal deleted inserted replaced
73:fcf75e232c5b 74:0ff3ba646492
       
     1 <?php
       
     2 // $Id: imce-page.tpl.php,v 1.8.2.2 2008/04/21 18:36:22 ufku Exp $
       
     3 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
       
     4 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $GLOBALS['language']->language; ?>" xml:lang="<?php print $GLOBALS['language']->language; ?>">
       
     5 
       
     6 <head>
       
     7   <title><?php print t('File Browser'); ?></title>
       
     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">/*Quick-override*/</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>