Plugin Directory

Changeset 1302961


Ignore:
Timestamp:
12/08/2015 01:37:23 PM (10 years ago)
Author:
offshorent
Message:

new version committed

Location:
os-related-posts
Files:
22 added
2 edited

Legend:

Unmodified
Added
Removed
  • os-related-posts/trunk/os-related-posts.php

    r1289436 r1302961  
    44 * Plugin URI: http://offshorent.com/blog/extensions/os-related-posts
    55 * Description: The OS Related Posts feature scans all of your posts, analyzes them, and lets you show contextual posts under the same category.
    6  * Version: 2.1
     6 * Version: 2.2
    77 * Author: Jinesh, Senior Software Engineer
    88 * Author URI: http://www.offshorent.com/
    9  * Requires at least: 3.0
     9 * Requires at least: 3.8
    1010 * Tested up to: 4.3.1
    1111**/
     
    2121 *
    2222 * @class OSRelatedPosts
    23  * @version 2.1
     23 * @version 2.2
    2424 */
    2525final class OSRelatedPosts {
     
    2727    /**
    2828    * @var string
    29     * @since 2.1
    30     */
    31      
    32     public $version = '2.1';
     29    * @since 2.2
     30    */
     31     
     32    public $version = '2.2';
    3333
    3434    /**
    3535    * @var OSRelatedPosts The single instance of the class
    36     * @since 2.1
     36    * @since 2.2
    3737    */
    3838     
     
    4444    * Ensures only one instance of OSRelatedPosts is loaded or can be loaded.
    4545    *
    46     * @since 2.1
     46    * @since 2.2
    4747    * @static
    4848    * @return OSRelatedPosts - Main instance
     
    5959    * Cloning is forbidden.
    6060    *
    61     * @since 2.1
     61    * @since 2.2
    6262    */
    6363
    6464    public function __clone() {
    65         _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'os-related-posts' ), '2.1' );
     65        _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'os-related-posts' ), '2.2' );
    6666    }
    6767
     
    6969    * Unserializing instances of this class is forbidden.
    7070    *
    71     * @since 2.1
     71    * @since 2.2
    7272    */
    7373     
    7474    public function __wakeup() {
    75         _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'os-related-posts' ), '2.1' );
     75        _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'os-related-posts' ), '2.2' );
    7676    }
    7777       
     
    7979    * Get the plugin url.
    8080    *
    81     * @since 2.1
     81    * @since 2.2
    8282    */
    8383
     
    8989    * Get the plugin path.
    9090    *
    91     * @since 2.1
     91    * @since 2.2
    9292    */
    9393
     
    9999    * Get Ajax URL.
    100100    *
    101     * @since 2.1
     101    * @since 2.2
    102102    */
    103103
     
    110110    * @access public
    111111    * @return OSRelatedPosts
    112     * @since 2.1
     112    * @since 2.2
    113113    */
    114114     
     
    135135    /**
    136136    * Install OSRelatedPosts
    137     * @since 2.1
     137    * @since 2.2
    138138    */
    139139     
     
    149149    /**
    150150    * Define OSRelatedPosts Constants
    151     * @since 2.1
     151    * @since 2.2
    152152    */
    153153     
     
    166166    * includes admin defaults files
    167167    *
    168     * @since 2.1
     168    * @since 2.2
    169169    */
    170170     
     
    174174    /**
    175175    * Init OSRelatedPosts when WordPress Initialises.
    176     * @since 2.1
     176    * @since 2.2
    177177    */
    178178     
     
    186186    * Clean all output buffers
    187187    *
    188     * @since  2.1
     188    * @since  2.2
    189189    */
    190190     
     
    197197    * Callback function
    198198    *
    199     * @since  2.1
     199    * @since  2.2
    200200    */
    201201     
     
    207207    * Clean all output buffers
    208208    *
    209     * @since  2.1
     209    * @since  2.2
    210210    */
    211211     
     
    217217    * Add admin menu for os_related_posts blog
    218218    *
    219     * @since  2.1
     219    * @since  2.2
    220220    */
    221221     
     
    229229    * about_os_related_posts_developer for os_related_posts blog
    230230    *
    231     * @since  2.1
     231    * @since  2.2
    232232    */
    233233
     
    314314    * Setting function for os_related_posts blog
    315315    *
    316     * @since  2.1
     316    * @since  2.2
    317317    */
    318318     
     
    459459    /**
    460460    * Admin init OSRelatedPosts when WordPress Initialises.
    461     * @since  2.1
     461    * @since  2.2
    462462    */
    463463     
     
    473473    /**
    474474    * Sanitize each setting field as needed
    475     * @since 2.1
     475    * @since 2.2
    476476    */
    477477         
     
    538538    * Frontend style hook for OSRelatedPosts
    539539    *
    540     * @since  2.1
     540    * @since  2.2
    541541    */
    542542     
     
    746746 * Returns the main instance of OSRelatedPosts to prevent the need to use globals.
    747747 *
    748  * @since  2.1
     748 * @since  2.2
    749749 * @return OSRelatedPosts
    750750 */
  • os-related-posts/trunk/readme.txt

    r1288601 r1302961  
    44Requires at least: 3.0
    55Tested up to: 4.3.1
    6 Stable tag: 2.1
     6Stable tag: 2.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.