Guest User

Untitled

a guest
Jul 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <?php
  2. if ($this->download) {
  3. $objFiles = \FilesModel::findMultipleByIds(deserialize($this->download));?>
  4. <div class="icon- product_enclosure enclosure spaceAbove-large">
  5. <ul class="unstyled">
  6. <?php
  7. while ($objFiles->next()) {
  8. echo '<li> <a onclick="ga(\'send\', \'event\', \'Download\', \''.$objFiles->name.' - PDF Dokument\');'.$objFiles->name.' - PDF Dokument\');" title="Die Datei '.$objFiles->name.' herunterladen" target="_blank" href="'.$objFiles->path.'">'.$objFiles->name.'</a></li>';
  9. }?>
  10. </ul>
  11. </div>
  12. <?php
  13. }
  14. ?>
Add Comment
Please, Sign In to add comment