Making WordPress.org


Ignore:
Timestamp:
02/26/2018 06:38:36 PM (8 years ago)
Author:
iandunn
Message:

CampTix Badge Generator: Apply coding standards.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/camptix-badge-generator/includes/common.php

    r4576 r6768  
    6666 * Get the attendees
    6767 *
    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().
     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().
    7474 *
    7575 * @todo Maybe optimize this by looking at post_date rather than tix_timestamp
     
    143143                    'size'    => 1024,
    144144                    'default' => 'blank',
    145                     'rating'  => 'g'
     145                    'rating'  => 'g',
    146146                )
    147147            );
     
    188188    $classes = array(
    189189        'attendee-' . $attendee->post_name,
    190         'ticket-'   . $attendee->ticket
     190        'ticket-'   . $attendee->ticket,
    191191    );
    192192
Note: See TracChangeset for help on using the changeset viewer.