Guest User

Untitled

a guest
May 21st, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. <!-- Not possible in Twig --> <? $parties = array_merge($upcoming_local_parties, $upcoming_online_parties);?> <!-- Not possible in Twig -->
  2.  
  3. <? if(!empty($parties)): ?>
  4. <? $i = 0; ?>
  5. <ul class="cardGrid">
  6. <? foreach ($parties as $party): ?>
  7. <li class="party<? if ($i % 4 == 0) echo " row" ?>"><a href="<?= url::site("parties/profile/{$party['event_id']}"); ?>">
  8. <img src="<?= url::site("{$party['avatar_photo_id']}") . "/100/150"; ?>" alt="<?= $party['name']; ?>" />
  9. <h3><?= $party['name']; ?></h3>
  10. <?
  11. $startTime = strtotime($party['event_start']);
  12. $currentTime = time();
  13. if ($startTime > $currentTime) {
  14. $timeString = 'Starts ';
  15. } else {
  16. $timeString = 'Started ';
  17. }
  18. ?>
  19. <p class="bottomStats"><?= $timeString . Toolbox::getTextDate($party['event_start']); ?><? if ($party['event_type'] == 'online') echo " online" ?></p>
  20. </a></li>
  21. <? $i++; endforeach; ?>
  22. </ul>
  23. <? else: ?>
  24. <div class="nothinghere">
  25. <h3>Sorry, there are no parties associated with this movie yet. But, you can <a href="<?= url::site('parties/create/' . $movie['lovecinema_key'])?>">create one!</a></h3>
  26. </div>
  27. <? endif; ?>
  28.  
  29. ================================================================================================
  30.  
  31. <!-- Not possible in Twig --> <? $parties = array_merge($upcoming_local_parties, $upcoming_online_parties);?> <!-- Not possible in Twig -->
  32.  
  33. {% macro cardGridRow(number) %}
  34. {% if loop.index % number|default('4') == 4 %}&nbsp;row{% /if %}
  35. {% endmacro %}
  36.  
  37. <ul class="cardGrid">
  38. {% for party in parties %}
  39. <li class="party{ cardGridRow }"><a href="{ url.site('parties/profile/' ~ party.event_id) }">
  40. <img src="{ url.site(party.avatar_photo_id ~ '/100/150') }" alt="{ party.name }" />
  41. <h3>{ party.name }</h3>
  42. <!-- Whole big chunk of non-display php in the view here. Could potentially do with twig, but probably shouldn't. -->
  43. <p class="bottomStats">{ party.event_start|textdate }{% if party.event_type == 'online' %}online{% /if %}</p>
  44. </a></li>
  45. {% else %}
  46. <li class="nothingHere">Sorry, there were no parties here. Create one!</li>
  47. {% endfor %}
  48. </ul>
Add Comment
Please, Sign In to add comment