styleguide-palette-swatch.tpl.php in Style Guide 7
Available variables:
- $id: The swatch ID.
- $name: The swatch name.
- $description: The swatch description.
- $hex: The swatch hex value.
2 theme calls to styleguide-palette-swatch.tpl.php
- StyleguidePaletteTest::testSwatchTheming in styleguide_palette/
styleguide_palette.test - Tests theme functions.
- template_preprocess_styleguide_palette in styleguide_palette/
styleguide_palette.module - Implements hook_preprocess_HOOK() for styleguide-palette.tpl.php.
File
styleguide_palette/templates/styleguide-palette-swatch.tpl.phpView source
<?php
/**
* @file
*
* Available variables:
* - $id: The swatch ID.
* - $name: The swatch name.
* - $description: The swatch description.
* - $hex: The swatch hex value.
*
* @ingroup themeable
*/
?>
<div class="styleguide-palette-swatch-color" style="background-color: <?php
print $hex;
?>;"> </div>
<h3 class="styleguide-palette-swatch-name"><?php
print $name;
?></h3>
<div class="styleguide-palette-swatch-hex"><em><?php
print $hex;
?></em></div>
<div class="styleguide-palette-swatch-description"><?php
print $description;
?></div>