You are here

pay_transaction.tpl.php in Pay 7

Same filename and directory in other branches
  1. 6 theme/pay_transaction.tpl.php

File

theme/pay_transaction.tpl.php
View source

<h4>Date</h4>
<?php

print $date;
?>

<h4>ID</h4>
<?php

print $id;
?>

<?php

if ($items) {
  ?>
  <?php

  print $items;
}
?>

<?php

if ($notes) {
  ?>
  <h4>Notes</h4>
  <?php

  print $notes;
}
?>

<?php

if ($actions) {
  ?>
  <h4>Actions</h4>
  <?php

  print $actions;
}
?>

<?php

if ($activity) {
  ?>
  <h4><?php

  print t('Payment activity');
  ?></h4>
  <?php

  print $activity;
}