piecemaker-xml-image.tpl.php 516 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @file
  4. * Outputs the Image XML node for piecemaker xml files
  5. *
  6. * @variables
  7. * $item: An associative array. @see template_preprocess_piecemaker_xml for details
  8. */
  9. ?>
  10. <Image <?php print drupal_attributes($item['#attributes']); ?>>
  11. <?php if (!empty($item['Text'])):?>
  12. <Text><?php print $item['Text']; ?></Text>
  13. <?php endif;?>
  14. <?php if (!empty($item['Hyperlink']['#attributes'])):?>
  15. <Hyperlink <?php print drupal_attributes($item['Hyperlink']['#attributes']);?>/>
  16. <?php endif;?>
  17. </Image>