colorfield-colored-message.tpl.php in Colorfield 7
Template file for the formatted "colored message" of the colorfield module.
1 theme call to colorfield-colored-message.tpl.php
- colorfield_field_formatter_view in ./
colorfield.module - Implements hook_field_formatter_view().
File
templates/colorfield-colored-message.tpl.phpView source
<?php
/**
* @file
* Template file for the formatted "colored message" of the colorfield module.
*/
?>
<div class="colorfield-colored-message">
<p style="color: <?php
print $text_color;
?>">
<?php
print $text_message;
?>
</p>
</div>