piecemaker-xml-video.tpl.php 404 B

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