You are here

media-acquiadam-browser-info-modal.tpl.php in Media: Acquia DAM 7

Template implementation for asset information displayed inside a modal..

Variables: $asset: The asset object being rendered. $preview: The preview markup to use. Usually an image. $properties: The property markup to use. Usually a table.

File

modules/media_acquiadam_browser/templates/media-acquiadam-browser-info-modal.tpl.php
View source
<?php

/**
 * @file
 * Template implementation for asset information displayed inside a modal..
 *
 * Variables:
 *  $asset: The asset object being rendered.
 *  $preview: The preview markup to use. Usually an image.
 *  $properties: The property markup to use. Usually a table.
 */
?>
<div class="asset-info">
  <?php

if (!empty($preview)) {
  ?>
  <div class="preview">
    <?php

  print $preview;
  ?>
  </div>
  <?php

}
?>
  <div class="properties">
    <?php

print $properties;
?>
  </div>
  <?php

if (!empty($dam_link)) {
  ?>
    <div>
      <?php

  print $dam_link;
  ?>
    </div>
  <?php

}
?>
</div>