You are here

amazon-item-details.tpl.php in Amazon Product Advertisement API 6

File

amazon-item-details.tpl.php
View source
<div class="<?php

print $classes;
?>">
<?php

if (!empty($invalid_asin)) {
  print "<div class='invalid_asin'>This item is no longer valid on Amazon.</div>";
}
print $smallimage;
?>
<div><strong><?php

print l($title, $detailpageurl, array(
  'html' => TRUE,
  'attributes' => array(
    'rel',
    'nofollow',
  ),
));
?></strong></div>
<div><strong><?php

print t('Manufacturer');
?>:</strong> <?php

if (!empty($manufacturer)) {
  print $manufacturer;
}
?></div>
<div><strong><?php

print t('Part Number');
?>:</strong> <?php

if (!empty($mpn)) {
  print $mpn;
}
?></div>
<div><strong><?php

print t('Price');
?>:</strong> <?php

if (!empty($listpriceformattedprice)) {
  print $listpriceformattedprice;
}
?></div>
</div>