show-content-dialog.phtml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <div id="show_content_dialog">
  2. <div><?php echo $this->additionalShowInfo; ?></div>
  3. <table width="100%" border="0" cellspacing="0" cellpadding="0" class="datatable">
  4. <tr>
  5. <th><?php echo _("Start") ?></th>
  6. <th><?php echo _("Title") ?></th>
  7. <th><?php echo _("Creator") ?></th>
  8. <th><?php echo _("Album") ?></th>
  9. <th><?php echo _("Length") ?></th>
  10. <th><?php echo _("Genre") ?></th>
  11. </tr>
  12. <?php $i=0; ?>
  13. <?php foreach($this->showContent as $row): ?>
  14. <tr id="au_<?php echo $row["item_id"] ?>" class="<?php if($i&1){echo "even";}else{echo "odd";}?>">
  15. <td><?php echo $row["starts"] ?></td>
  16. <td><?php echo $this->escape($row["track_title"]) ?></td>
  17. <td><?php echo $this->escape($row["creator"]) ?></td>
  18. <td><?php echo $this->escape($row["album"]) ?></td>
  19. <td class="library_length"><?php echo $row["length"] ?></td>
  20. <td><?php echo $row["genre"] ?></td>
  21. </tr>
  22. <?php $i=$i+1; ?>
  23. <?php endforeach; ?>
  24. </table>
  25. <br/>
  26. <div id="show_time_info">
  27. <span id="show_time_filled" class="time"><?php echo $this->timeFilled; ?></span>
  28. <div id="show_progressbar"></div>
  29. <span id="show_length" class="time"><?php echo $this->showLength; ?></span>
  30. </div>
  31. </div>