1234567891011121314151617 |
- <?php
- ?>
- <Image <?php print drupal_attributes($item['#attributes']); ?>>
- <?php if (!empty($item['Text'])):?>
- <Text><?php print $item['Text']; ?></Text>
- <?php endif;?>
- <?php if (!empty($item['Hyperlink']['#attributes'])):?>
- <Hyperlink <?php print drupal_attributes($item['Hyperlink']['#attributes']);?>/>
- <?php endif;?>
- </Image>
|