video_filter_dashboard.tpl.php 830 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @file
  4. * Video filter dashboard template, controls the output in the popup
  5. */
  6. ?>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
  9. <head>
  10. <title><?php print $head_title; ?></title>
  11. <?php print $head; ?>
  12. <?php print $styles; ?>
  13. <?php print $scripts; ?>
  14. <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>
  15. </head>
  16. <body id="video_filter">
  17. <?php if (!empty($messages)): print $messages; endif; ?>
  18. <?php if (!empty($help)): print $help; endif; ?>
  19. <div class="clearfix">
  20. <?php print $form; ?>
  21. </div>
  22. </body>
  23. </html>