Make WordPress Core

Changeset 44375


Ignore:
Timestamp:
12/30/2018 05:05:49 AM (8 years ago)
Author:
peterwilsoncc
Message:

Docs: Correct inline documentation versions for Cron API changes.

[43540] introduced changes to allow hijacking the cron implementation.

These changes were slated for 5.0, but have since been moved to the 5.1 release.

See #43540.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/cron.php

    r44374 r44375  
    6262         * Return true if the event was scheduled, false if not.
    6363         *
    64          * @since 5.0.0
     64         * @since 5.1.0
    6565         *
    6666         * @param null|bool $pre   Value to return instead. Default null to continue adding the event.
     
    253253         * rescheduled, false if not.
    254254         *
    255          * @since 5.0.0
     255         * @since 5.1.0
    256256         *
    257257         * @param null|bool $pre   Value to return instead. Default null to continue adding the event.
     
    319319         * unscheduled, false if not.
    320320         *
    321          * @since 5.0.0
     321         * @since 5.1.0
    322322         *
    323323         * @param null|bool $pre       Value to return instead. Default null to continue unscheduling the event.
     
    379379         * if unscheduling one or more events fails.
    380380         *
    381          * @since 5.0.0
     381         * @since 5.1.0
    382382         *
    383383         * @param null|array $pre  Value to return instead. Default null to continue unscheduling the event.
     
    439439         * if unscheduling one or more events fails.
    440440         *
    441          * @since 5.0.0
     441         * @since 5.1.0
    442442         *
    443443         * @param null|array $pre  Value to return instead. Default null to continue unscheduling the hook.
     
    484484 * Retrieve the full event object for a given event.
    485485 *
    486  * @since 5.0.0
     486 * @since 5.1.0
    487487 *
    488488 * @param string   $hook      Action hook of the event.
     
    508508         * should be returned.
    509509         *
    510          * @since 5.0.0
     510         * @since 5.1.0
    511511         *
    512512         * @param null|bool $pre       Value to return instead. Default null to continue retrieving the event.
     
    552552 *
    553553 * @since 2.1.0
    554  * @since 5.0.0 {@see 'pre_next_scheduled'} and {@see 'next_scheduled'} filters added.
     554 * @since 5.1.0 {@see 'pre_next_scheduled'} and {@see 'next_scheduled'} filters added.
    555555 *
    556556 * @param string $hook Action hook of the event.
     
    569569         * Pass the timestamp of the next event if it exists, false if not.
    570570         *
    571          * @since 5.0.0
     571         * @since 5.1.0
    572572         *
    573573         * @param null|bool $pre       Value to return instead. Default null to continue unscheduling the event.
     
    596596         * Filter the next scheduled event timestamp.
    597597         *
    598          * @since 5.0.0
     598         * @since 5.1.0
    599599         *
    600600         * @param int|bool $next The UNIX timestamp when the scheduled event will next occur, or false if not found.
     
    829829 *
    830830 * @since 2.1.0
    831  * @since 5.0.0 {@see 'get_schedule'} filter added.
     831 * @since 5.1.0 {@see 'get_schedule'} filter added.
    832832 *
    833833 * @param string $hook Action hook to identify the event.
     
    846846         * Filter the schedule for a hook.
    847847         *
    848          * @since 5.0.0
     848         * @since 5.1.0
    849849         *
    850850         * @param string|bool $schedule Schedule for the hook. False if not found.
Note: See TracChangeset for help on using the changeset viewer.