Changeset 6768 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/camptix-badge-generator/includes/common.php
- Timestamp:
- 02/26/2018 06:38:36 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/camptix-badge-generator/includes/common.php
r4576 r6768 66 66 * Get the attendees 67 67 * 68 * @param string|array $ticket_ids Reduce fetched attendees by the ticket they purchased. The string 'all'69 * will result in all attendees being fetched, regardless of their70 * ticket. An array of ticket IDs will result in only the attendees for71 * those tickets being fetched.72 * @param string $registered_afterReduce fetched attendees by their registration date. Any value parseable73 * by strtotime().68 * @param string|array $ticket_ids Reduce fetched attendees by the ticket they purchased. The string 'all' 69 * will result in all attendees being fetched, regardless of their 70 * ticket. An array of ticket IDs will result in only the attendees for 71 * those tickets being fetched. 72 * @param string $registered_after Reduce fetched attendees by their registration date. Any value parseable 73 * by strtotime(). 74 74 * 75 75 * @todo Maybe optimize this by looking at post_date rather than tix_timestamp … … 143 143 'size' => 1024, 144 144 'default' => 'blank', 145 'rating' => 'g' 145 'rating' => 'g', 146 146 ) 147 147 ); … … 188 188 $classes = array( 189 189 'attendee-' . $attendee->post_name, 190 'ticket-' . $attendee->ticket 190 'ticket-' . $attendee->ticket, 191 191 ); 192 192
Note: See TracChangeset
for help on using the changeset viewer.