Advertisement
Guest User

table

a guest
Dec 28th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. <table class="espresso-table" width="100%">
  2.  
  3. <thead class="espresso-table-header-row">
  4. <tr>
  5. <th class="th-group"><?php //_e('Course','event_espresso'); ?></th>
  6. <th class="th-group"><?php //_e('Location','event_espresso'); ?></th>
  7. <th class="th-group"><?php //_e('City','event_espresso'); ?></th>
  8. <th class="th-group"><?php //_e('State','event_espresso'); ?></th>
  9. <th class="th-group"><?php //_e('Date','event_espresso'); ?></th>
  10. <th class="th-group"><?php //_e('Time','event_espresso'); ?></th>
  11. <th class="th-group"><?php //_e('','event_espresso'); ?></th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15.  
  16. <?php
  17.  
  18. foreach ($events as $event){
  19. $reg_limit = $event->reg_limit;
  20.  
  21.  
  22. $event_desc = wpautop($event->event_desc);
  23.  
  24. $register_button = '<a id="a_register_link-'.$event->id.'" href="'.get_option('siteurl').'/?page_id='.$event_page_id.'&regevent_action=register&event_id='.$event->id.'&name_of_event='.stripslashes_deep($event->event_name).'">Register</a>';
  25.  
  26. //Check to see how many open spots are available
  27. $open_spots = get_number_of_attendees_reg_limit($event->id, 'available_spaces') == 'Unlimited' ? 999 : get_number_of_attendees_reg_limit($event->id, 'available_spaces');
  28. //echo $open_spots;
  29.  
  30. if ( $open_spots < 1 ) { $live_button = 'Closed'; }
  31.  
  32. ?>
  33. <tr class="espresso-table-row">
  34. <td class="td-group">
  35. <?php echo $event->event_name ?>
  36. </td>
  37. <td class="td-group">
  38. <?php //echo $event->address ?>
  39. </td>
  40. <td class="td-group">
  41. <?php //echo $event->city ?>
  42. </td>
  43. <td class="td-group">
  44. <?php //echo $event->state ?>
  45. </td>
  46. <td class="td-group">
  47. <?php //echo event_date_display($event->start_date, $format = 'l, M d, Y') ?>
  48. </td>
  49. <td class="td-group">
  50. <?php //echo espresso_event_time($event->id, 'start_time', get_option('time_format')) ?>
  51. </td>
  52.  
  53. <td class="td-group">
  54. <?php echo $register_button ?>
  55. </td>
  56. </tr>
  57. <?php } //close foreach ?>
  58. </tbody>
  59. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement