Making WordPress.org

Changeset 12724


Ignore:
Timestamp:
07/10/2023 10:24:57 PM (2 years ago)
Author:
coffee2code
Message:

Photo Directory, Photo: Add get_pending_post_statuses() to return list of photo post statuses that are considered pending (i.e. awaiting moderation).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/photo-directory/inc/photo.php

    r12702 r12724  
    412412
    413413    /**
     414     * Returns an array of photo post statuses that are considered pending.
     415     *
     416     * Posts with these statuses should count towards the user's current
     417     * submission count and are considered as being in the moderation queue.
     418     *
     419     * @return string[] Array of post statuses.
     420     */
     421    public static function get_pending_post_statuses() {
     422        return (array) apply_filters(
     423            'wporg_photos_pending_post_statuses',
     424            [ 'pending' ]
     425        );
     426
     427    }
     428
     429    /**
    414430     * Determines if the provided MD5 hash of a photo is already known, implying
    415431     * it is a duplicate.
Note: See TracChangeset for help on using the changeset viewer.