You are here

themekey-debug-messages.tpl.php in ThemeKey 6.3

template to format ThemeKey Debug Messages

File

themekey-debug-messages.tpl.php
View source
<?php

/**
 * @file
 * template to format ThemeKey Debug Messages
 */
?>
<table border="1">
  <tr><th><?php

print t('ThemeKey Debug Messages');
?></th></tr>
  <?php

foreach ($messages as $message) {
  ?>
  <tr><td><?php

  print $message;
  ?></td></tr>
  <?php

}
?>
</table>