Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

loadLastSubscriptions.view.php 1.1KB

1234567891011121314151617181920212223242526272829
  1. <?php if (is_array($this->view->usersList) && !empty($this->view->usersList)): ?>
  2. <div class="clearfix">
  3. <a href="<?php echo $this->helper->setHash('users/'.time().'/surname/desc/1'); ?>" class="float-right"><?php echo _('Show more...'); ?></a>
  4. </div>
  5. <table class="table table-hover">
  6. <thead class="thead-light">
  7. <tr>
  8. <th width="1%"></th>
  9. <th><?php echo _('Surname'); ?></th>
  10. <th><?php echo _('Name'); ?></th>
  11. <th class="text-right"><?php echo _('Subscription'); ?></th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <?php foreach($this->view->usersList as $user): ?>
  16. <tr>
  17. <td><?php echo $this->helper->setAvatarView($this->user->getAvatar($user['id']), ['timestamp'=>md5($user['updated_at'])]); ?></td>
  18. <td><?php echo $user['surname']; ?></td>
  19. <td><?php echo $user['name']; ?></td>
  20. <td class="text-right"><?php echo $this->helper->dateIntervalString($user['created_at']); ?></td>
  21. </tr>
  22. <?php endforeach; ?>
  23. </tbody>
  24. </table>
  25. <?php else: ?>
  26. <div class="alert alert-light" role="alert"><?php echo _('The subscriptions content is currently empty, please try again in a few minutes.'); ?></div>
  27. <?php endif; ?>