Replace 5.xx.x with 5.27.0

This commit is contained in:
Tetrakern 2024-12-09 02:45:08 +01:00
parent 177630f367
commit a584bf51a6
4 changed files with 24 additions and 24 deletions

View File

@ -9,7 +9,7 @@
*
* @package WordPress
* @subpackage Fictioneer
* @since 5.xx.x
* @since 5.27.0
*/
define( 'SHORTINIT', true );

View File

@ -10,7 +10,7 @@ defined( 'ABSPATH' ) OR exit;
/**
* Returns the user avatar URL.
*
* @since 5.xx.x
* @since 5.27.0
*
* @param stdClass $user User object.
* @param int $size Optional. Size of the avatar. Default 96.
@ -66,7 +66,7 @@ function ffcnr_get_avatar_url( $user, $size = 96 ) {
/**
* Checks if an user is an administrator.
*
* @since 5.xx.x
* @since 5.27.0
*
* @param stdClass $user User object.
*
@ -80,7 +80,7 @@ function ffcnr_is_admin( $user ) {
/**
* Checks if an user is an author.
*
* @since 5.xx.x
* @since 5.27.0
*
* @param stdClass $user User object.
*
@ -97,7 +97,7 @@ function ffcnr_is_author( $user ) {
/**
* Checks if an user is a moderator.
*
* @since 5.xx.x
* @since 5.27.0
*
* @param stdClass $user User object.
*
@ -111,7 +111,7 @@ function ffcnr_is_moderator( $user ) {
/**
* Checks if an user is an editor.
*
* @since 5.xx.x
* @since 5.27.0
*
* @param stdClass $user User object.
*
@ -125,7 +125,7 @@ function ffcnr_is_editor( $user ) {
/**
* Returns an user's Follows
*
* @since 5.xx.x
* @since 5.27.0
* @see includes/functions/users/_follows.php
*
* @param stdClass $user User to get the Follows for.
@ -161,7 +161,7 @@ function fictioneer_load_follows( $user ) {
/**
* Query count of new chapters for followed stories
*
* @since 5.xx.x
* @since 5.27.0
* @see includes/functions/users/_follows.php
*
* @param array $story_ids IDs of the followed stories.
@ -212,7 +212,7 @@ function fictioneer_query_new_followed_chapters_count( $story_ids, $after_date =
* Get an user's Reminders array from the database or creates a new one if it
* does not yet exist.
*
* @since 5.xx.x
* @since 5.27.0
* @see includes/functions/users/_reminders.php
*
* @param stdClass $user User to get the Reminders for.
@ -246,7 +246,7 @@ function fictioneer_load_reminders( $user ) {
* Get an user's Checkmarks array from the database or creates a new one if it
* does not yet exist.
*
* @since 5.xx.x
* @since 5.27.0
* @see includes/functions/users/_checkmarks.php
*
* @param stdClass $user User to get the checkmarks for.
@ -277,7 +277,7 @@ function fictioneer_load_checkmarks( $user ) {
/**
* Returns an unique MD5 hash for the user.
*
* @since 5.xx.x
* @since 5.27.0
* @see includes/functions/_helpers-users.php
*
* @param stdClass $user User to get the fingerprint for.

View File

@ -10,7 +10,7 @@
* Note: Regardless of the given option names to query, the function
* always queries a set of default WP options for convenience.
*
* @since 5.xx.x
* @since 5.27.0
* @global wpdb $wpdb WordPress database object.
* @global array $ffcnr_options Array of previously loaded options.
*
@ -66,7 +66,7 @@ function ffcnr_load_options( $option_names = [], $blog_id_override = null ) {
*
* Note: Reduced alternative to wp_hash().
*
* @since 5.xx.x
* @since 5.27.0
*
* @param string $data Plain text to hash.
* @param string $scheme Authentication scheme (auth, nonce).
@ -88,7 +88,7 @@ function ffcnr_hash( $data, $scheme = 'auth' ){
*
* Note: Reduced alternative to WP_Session_Tokens::hash_token().
*
* @since 5.xx.x
* @since 5.27.0
*
* @param string $token Session token to hash.
*
@ -106,7 +106,7 @@ function ffcnr_hash_token( $token ){
/**
* Returns authentication cookie.
*
* @since 5.xx.x
* @since 5.27.0
*
* @return string The unprocessed cookie string.
*/
@ -136,7 +136,7 @@ function ffcnr_get_auth_cookie() {
*
* Note: Alternative to wp_get_session_token().
*
* @since 5.xx.x
* @since 5.27.0
*
* @return string The session token or empty string.
*/
@ -153,7 +153,7 @@ function ffcnr_get_session_token() {
*
* Note: Alternative to wp_nonce_tick().
*
* @since 5.xx.x
* @since 5.27.0
*
* @return float Float value rounded up to the next highest integer.
*/
@ -170,7 +170,7 @@ function ffcnr_nonce_tick( $action = -1 ) {
*
* Note: Alternative to wp_create_nonce().
*
* @since 5.xx.x
* @since 5.27.0
*
* @param string $action Scalar value to add context to the nonce.
* @param int $uid User ID.
@ -192,7 +192,7 @@ function ffcnr_create_nonce( $action, $uid ) {
/**
* Returns current user.
*
* @since 5.xx.x
* @since 5.27.0
*
* @param array $options Optional. Pre-queried theme options.
* @param int|null $blog_id_override Optional. Override current blog ID.
@ -285,7 +285,7 @@ function ffcnr_get_current_user( $options = null, $blog_id_override = null ) {
/**
* Loads meta fields for a given user ID.
*
* @since 5.xx.x
* @since 5.27.0
* @global wpdb $wpdb WordPress database object.
*
* @param int $user_id User ID.
@ -339,7 +339,7 @@ function ffcnr_load_user_meta( $user_id, $filter = '', $reload = false, $meta_ke
*
* Note: Alternative to get_user_meta().
*
* @since 5.xx.x
* @since 5.27.0
*
* @param int $user_id User ID.
* @param string $meta_key Meta key.
@ -362,7 +362,7 @@ function ffcnr_get_user_meta( $user_id, $meta_key, $filter = '' ) {
*
* Note: Alternative to update_user_meta().
*
* @since 5.xx.x
* @since 5.27.0
* @global wpdb $wpdb WordPress database object.
*
* @param int $user_id User ID.
@ -419,7 +419,7 @@ function ffcnr_update_user_meta( $user_id, $meta_key, $meta_value ) {
/**
* Includes a ffcnr-functions.php file from the active theme.
*
* @since 5.xx.x
* @since 5.27.0
*
* @return bool True if included, false if not.
*/

View File

@ -106,7 +106,7 @@ if ( ! function_exists( 'fictioneer_query_new_followed_chapters_count' ) ) {
/**
* Query count of new chapters for followed stories
*
* @since 5.xx.x
* @since 5.27.0
*
* @param array $story_ids IDs of the followed stories.
* @param string|null $after_date Optional. Only return chapters after this date,