Plugin Directory

Changeset 2745544


Ignore:
Timestamp:
06/20/2022 09:29:47 PM (4 years ago)
Author:
paydelete
Message:

Added date range filtering

Location:
randomrss/trunk
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • randomrss/trunk/README.txt

    r2661694 r2745544  
    44Tags: RSS, Syndication, Auto-Blogging
    55Requires at least: 3.0.1
    6 Tested up to: 5.8.3
    7 Stable tag: 1.0.1
     6Tested up to: 6.0.0
     7Stable tag: 1.5.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020
    2121To change the pubDate to the current date/time simply append "?pubdate=new" to the URL. If the URL already has a different query string you will need to append it like this "&pubdate=new".
     22
     23
     24NEW: To filter by date range append strings specifying the earliest and latest dates you want. That can be done with the "datemin" and "datemax" strings which support the YYYY-MM-DD format.
     25
     26If you want everything after a specific date (ex: June 18, 2016) simply append "datemin=2016-06-18" or if you want everything before a specific date (ex: May 20, 2021) simply appened "?datemax=2021-05-21" and if you want to set both append something like "?datemin=2016-06-18&datemax-2021-05-21" with the & character only being used when appending more than one string.
     27
    2228
    2329== Installation ==
  • randomrss/trunk/admin/class-randomrss-admin.php

    r2661688 r2745544  
    55 *
    66 * @link       https://paydelete.com/
    7  * @since      1.0.1
     7 * @since      1.5.0
    88 *
    99 * @package    Randomrss
     
    2626     * The ID of this plugin.
    2727     *
    28      * @since    1.0.1
     28     * @since    1.5.0
    2929     * @access   private
    3030     * @var      string    $randomrss    The ID of this plugin.
     
    3535     * The version of this plugin.
    3636     *
    37      * @since    1.0.1
     37     * @since    1.5.0
    3838     * @access   private
    3939     * @var      string    $version    The current version of this plugin.
     
    4444     * Initialize the class and set its properties.
    4545     *
    46      * @since    1.0.1
     46     * @since    1.5.0
    4747     * @param      string    $randomrss      The name of this plugin.
    4848     * @param      string    $version    The version of this plugin.
     
    5858     * Register the stylesheets for the admin area.
    5959     *
    60      * @since    1.0.1
     60     * @since    1.5.0
    6161     */
    6262    public function enqueue_styles() {
     
    8181     * Register the JavaScript for the admin area.
    8282     *
    83      * @since    1.0.1
     83     * @since    1.5.0
    8484     */
    8585    public function enqueue_scripts() {
  • randomrss/trunk/admin/partials/randomrss-admin-display.php

    r2661688 r2745544  
    77 *
    88 * @link       https://paydelete.com/
    9  * @since      1.0.1
     9 * @since      1.5.0
    1010 *
    1111 * @package    Randomrss
  • randomrss/trunk/feed.php

    r2661660 r2745544  
    55$randomrss_feedurl = get_site_url().'/wp-content/plugins/randomrss/feed.php';
    66$randomrss_feedxml = '';
    7  if(isset($_GET['category']) && isset($_GET['tag']))
     7if(isset($_GET['datemax']) && isset($_GET['datemin']))
     8{
     9    $datemax = explode("-",$_GET['datemax']);
     10    $datemin = explode("-",$_GET['datemin']);
     11    if(isset($_GET['category']) && isset($_GET['tag']))
    812 {
    913 $randomrss_feedtitle = sanitize_text_field($_GET['category']).' '.sanitize_text_field($_GET['tag']);
     
    1519    'category_name' => sanitize_text_field($_GET['category']),
    1620    'tag' => sanitize_text_field($_GET['tag']),
     21    'date_query' => array(
     22        array(
     23            'after'     => array(
     24                'year'  => $datemin[0],
     25                'month' => $datemin[1],
     26                'day'   => $datemin[2],
     27            ),
     28            'before'    => array(
     29                'year'  => $datemax[0],
     30                'month' => $datemax[1],
     31                'day'   => $datemax[2],
     32            ),
     33            'inclusive' => true,
     34        ),
     35    ),
    1736    );
    1837}elseif (isset($_GET['category']))
     
    2544    'posts_per_page' => 10,
    2645    'category_name' => sanitize_text_field($_GET['category']),
     46    'date_query' => array(
     47        array(
     48            'after'     => array(
     49                'year'  => $datemin[0],
     50                'month' => $datemin[1],
     51                'day'   => $datemin[2],
     52            ),
     53            'before'    => array(
     54                'year'  => $datemax[0],
     55                'month' => $datemax[1],
     56                'day'   => $datemax[2],
     57            ),
     58            'inclusive' => true,
     59        ),
     60    ),
    2761    );
    2862}elseif(isset($_GET['tag']))
     
    3569    'posts_per_page' => 10,
    3670    'tag' => sanitize_text_field($_GET['tag']),
     71    'date_query' => array(
     72        array(
     73            'after'     => array(
     74                'year'  => $datemin[0],
     75                'month' => $datemin[1],
     76                'day'   => $datemin[2],
     77            ),
     78            'before'    => array(
     79                'year'  => $datemax[0],
     80                'month' => $datemax[1],
     81                'day'   => $datemax[2],
     82            ),
     83            'inclusive' => true,
     84        ),
     85    ),
    3786    );
    3887}else{
     
    4089    'post_type' => 'post',
    4190    'orderby'   => 'rand',
    42     'posts_per_page' => 10,
    43     );
    44 }
    45 
    46  
     91    'posts_per_page' => 10,
     92    'date_query' => array(
     93        array(
     94            'after'     => array(
     95                'year'  => $datemin[0],
     96                'month' => $datemin[1],
     97                'day'   => $datemin[2],
     98            ),
     99            'before'    => array(
     100                'year'  => $datemax[0],
     101                'month' => $datemax[1],
     102                'day'   => $datemax[2],
     103            ),
     104            'inclusive' => true,
     105        ),
     106    ),
     107    );
     108}
     109    // NEXT PART ************************************************************
     110}else if(isset($_GET['datemin']))
     111{
     112    $datemin = explode("-",$_GET['datemin']);
     113    if(isset($_GET['category']) && isset($_GET['tag']))
     114 {
     115 $randomrss_feedtitle = sanitize_text_field($_GET['category']).' '.sanitize_text_field($_GET['tag']);
     116 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']).'&tag='.sanitize_text_field($_GET['tag']);
     117 $randomrss_args = array(
     118    'post_type' => 'post',
     119    'orderby'   => 'rand',
     120    'posts_per_page' => 10,
     121    'category_name' => sanitize_text_field($_GET['category']),
     122    'tag' => sanitize_text_field($_GET['tag']),
     123    'date_query' => array(
     124        array(
     125            'after'     => array(
     126                'year'  => $datemin[0],
     127                'month' => $datemin[1],
     128                'day'   => $datemin[2],
     129            ),
     130            'inclusive' => true,
     131        ),
     132    ),
     133    );
     134}elseif (isset($_GET['category']))
     135{
     136     $randomrss_feedtitle = sanitize_text_field($_GET['category']) . ' Category Random RSS Feed';
     137     $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']);
     138     $randomrss_args = array(
     139    'post_type' => 'post',
     140    'orderby'   => 'rand',
     141    'posts_per_page' => 10,
     142    'category_name' => sanitize_text_field($_GET['category']),
     143    'date_query' => array(
     144        array(
     145            'after'     => array(
     146                'year'  => $datemin[0],
     147                'month' => $datemin[1],
     148                'day'   => $datemin[2],
     149            ),
     150            'inclusive' => true,
     151        ),
     152    ),
     153    );
     154}elseif(isset($_GET['tag']))
     155{
     156     $randomrss_feedtitle = sanitize_text_field($_GET['tag']) . ' Tag Random RSS Feed';
     157     $randomrss_feedurl .= '?tag='.sanitize_text_field($_GET['tag']);
     158     $randomrss_args = array(
     159    'post_type' => 'post',
     160    'orderby'   => 'rand',
     161    'posts_per_page' => 10,
     162    'tag' => sanitize_text_field($_GET['tag']),
     163    'date_query' => array(
     164        array(
     165            'after'     => array(
     166                'year'  => $datemin[0],
     167                'month' => $datemin[1],
     168                'day'   => $datemin[2],
     169            ),
     170            'inclusive' => true,
     171        ),
     172    ),
     173    );
     174}else{
     175        $randomrss_args = array(
     176    'post_type' => 'post',
     177    'orderby'   => 'rand',
     178    'posts_per_page' => 10,
     179    'date_query' => array(
     180        array(
     181            'after'     => array(
     182                'year'  => $datemin[0],
     183                'month' => $datemin[1],
     184                'day'   => $datemin[2],
     185            ),
     186            'inclusive' => true,
     187        ),
     188    ),
     189    );
     190}
     191      // NEXT PART *************************************************************
     192}else if(isset($_GET['datemax']))
     193{
     194    $datemax = explode("-",$_GET['datemax']);
     195    if(isset($_GET['category']) && isset($_GET['tag']))
     196 {
     197 $randomrss_feedtitle = sanitize_text_field($_GET['category']).' '.sanitize_text_field($_GET['tag']);
     198 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']).'&tag='.sanitize_text_field($_GET['tag']);
     199 $randomrss_args = array(
     200    'post_type' => 'post',
     201    'orderby'   => 'rand',
     202    'posts_per_page' => 10,
     203    'category_name' => sanitize_text_field($_GET['category']),
     204    'tag' => sanitize_text_field($_GET['tag']),
     205    'date_query' => array(
     206        array(
     207            'before'    => array(
     208                'year'  => $datemax[0],
     209                'month' => $datemax[1],
     210                'day'   => $datemax[2],
     211            ),
     212            'inclusive' => true,
     213        ),
     214    ),
     215    );
     216}elseif (isset($_GET['category']))
     217{
     218     $randomrss_feedtitle = sanitize_text_field($_GET['category']) . ' Category Random RSS Feed';
     219     $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']);
     220     $randomrss_args = array(
     221    'post_type' => 'post',
     222    'orderby'   => 'rand',
     223    'posts_per_page' => 10,
     224    'category_name' => sanitize_text_field($_GET['category']),
     225    'date_query' => array(
     226        array(
     227            'before'    => array(
     228                'year'  => $datemax[0],
     229                'month' => $datemax[1],
     230                'day'   => $datemax[2],
     231            ),
     232            'inclusive' => true,
     233        ),
     234    ),
     235    );
     236}elseif(isset($_GET['tag']))
     237{
     238     $randomrss_feedtitle = sanitize_text_field($_GET['tag']) . ' Tag Random RSS Feed';
     239     $randomrss_feedurl .= '?tag='.sanitize_text_field($_GET['tag']);
     240     $randomrss_args = array(
     241    'post_type' => 'post',
     242    'orderby'   => 'rand',
     243    'posts_per_page' => 10,
     244    'tag' => sanitize_text_field($_GET['tag']),
     245    'date_query' => array(
     246        array(
     247            'before'    => array(
     248                'year'  => $datemax[0],
     249                'month' => $datemax[1],
     250                'day'   => $datemax[2],
     251            ),
     252            'inclusive' => true,
     253        ),
     254    ),
     255    );
     256}else{
     257    $randomrss_args = array(
     258    'post_type' => 'post',
     259    'orderby'   => 'rand',
     260    'posts_per_page' => 10,
     261    'date_query' => array(
     262        array(
     263            'before'    => array(
     264                'year'  => $datemax[0],
     265                'month' => $datemax[1],
     266                'day'   => $datemax[2],
     267            ),
     268            'inclusive' => true,
     269        ),
     270    ),
     271    );
     272}
     273     // NEXT PART *************************************************************
     274}else
     275{
     276     if(isset($_GET['category']) && isset($_GET['tag']))
     277 {
     278 $randomrss_feedtitle = sanitize_text_field($_GET['category']).' '.sanitize_text_field($_GET['tag']);
     279 $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']).'&tag='.sanitize_text_field($_GET['tag']);
     280 $randomrss_args = array(
     281    'post_type' => 'post',
     282    'orderby'   => 'rand',
     283    'posts_per_page' => 10,
     284    'category_name' => sanitize_text_field($_GET['category']),
     285    'tag' => sanitize_text_field($_GET['tag']),
     286    );
     287}elseif (isset($_GET['category']))
     288{
     289     $randomrss_feedtitle = sanitize_text_field($_GET['category']) . ' Category Random RSS Feed';
     290     $randomrss_feedurl .= '?category='.sanitize_text_field($_GET['category']);
     291     $randomrss_args = array(
     292    'post_type' => 'post',
     293    'orderby'   => 'rand',
     294    'posts_per_page' => 10,
     295    'category_name' => sanitize_text_field($_GET['category']),
     296    );
     297}elseif(isset($_GET['tag']))
     298{
     299     $randomrss_feedtitle = sanitize_text_field($_GET['tag']) . ' Tag Random RSS Feed';
     300     $randomrss_feedurl .= '?tag='.sanitize_text_field($_GET['tag']);
     301     $randomrss_args = array(
     302    'post_type' => 'post',
     303    'orderby'   => 'rand',
     304    'posts_per_page' => 10,
     305    'tag' => sanitize_text_field($_GET['tag']),
     306    );
     307}else{
     308        $randomrss_args = array(
     309    'post_type' => 'post',
     310    'orderby'   => 'rand',
     311    'posts_per_page' => 10,
     312    );
     313}
     314}
    47315$randomrss_the_query = new WP_Query( $randomrss_args );
    48316 
     
    67335            $randomrss_pubdate = mysql2date( 'D, d M Y H:i:s +0000', get_post_time( 'Y-m-d H:i:s', true ), false );
    68336        }
    69         $randomrss_feedxml .= '<item><title><![CDATA[ '.esc_html(get_the_title()) .' ]]></title><description><![CDATA[ '.wp_kses_post(apply_filters('the_content', get_the_content())).' ]]></description><link>'.esc_html(get_permalink()).'</link><guid>'.esc_html(get_permalink()).'</guid><pubDate>'.esc_html($randomrss_pubdate).'</pubDate></item>';
     337        $post_cats = get_the_category();
     338        $post_cat_name = $post_cats[0]->name;
     339        $randomrss_feedxml .= '<item><title><![CDATA[ '.esc_html(get_the_title()) .' ]]></title><description><![CDATA[ '.wp_kses_post(apply_filters('the_content', get_the_content())).' ]]></description><category>'.esc_html($post_cat_name).'</category><pubDate>'.esc_html($randomrss_pubdate).'</pubDate><link>'.esc_html(get_permalink()).'</link><guid>'.esc_html(get_permalink()).'</guid></item>';
    70340    }
    71341    $randomrss_feedxml .= '</channel></rss>';
  • randomrss/trunk/includes/class-randomrss-activator.php

    r2661674 r2745544  
    55 *
    66 * @link       https://paydelete.com/randomrss/
    7  * @since      1.0.1
     7 * @since      1.5.0
    88 *
    99 * @package    Randomrss
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.0.1
     18 * @since      1.5.0
    1919 * @package    Randomrss
    2020 * @subpackage Randomrss/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.0.1
     30     * @since    1.5.0
    3131     */
    3232    public static function activate() {
  • randomrss/trunk/includes/class-randomrss-deactivator.php

    r2661674 r2745544  
    55 *
    66 * @link       https://paydelete.com/randomrss/
    7  * @since      1.0.1
     7 * @since      1.5.0
    88 *
    99 * @package    Randomrss
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      1.0.1
     18 * @since      1.5.0
    1919 * @package    Randomrss
    2020 * @subpackage Randomrss/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.0.1
     30     * @since    1.5.0
    3131     */
    3232    public static function deactivate() {
  • randomrss/trunk/includes/class-randomrss-i18n.php

    r2661674 r2745544  
    88 *
    99 * @link       https://paydelete.com/randomrss/
    10  * @since      1.0.1
     10 * @since      1.5.0
    1111 *
    1212 * @package    Randomrss
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      1.0.1
     22 * @since      1.5.0
    2323 * @package    Randomrss
    2424 * @subpackage Randomrss/includes
     
    3131     * Load the plugin text domain for translation.
    3232     *
    33      * @since    1.0.1
     33     * @since    1.5.0
    3434     */
    3535    public function load_plugin_textdomain() {
  • randomrss/trunk/includes/class-randomrss-loader.php

    r2661674 r2745544  
    55 *
    66 * @link       https://paydelete.com/randomrss/
    7  * @since      1.0.1
     7 * @since      1.5.0
    88 *
    99 * @package    Randomrss
     
    2727     * The array of actions registered with WordPress.
    2828     *
    29      * @since    1.0.1
     29     * @since    1.5.0
    3030     * @access   protected
    3131     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3636     * The array of filters registered with WordPress.
    3737     *
    38      * @since    1.0.1
     38     * @since    1.5.0
    3939     * @access   protected
    4040     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4545     * Initialize the collections used to maintain the actions and filters.
    4646     *
    47      * @since    1.0.1
     47     * @since    1.5.0
    4848     */
    4949    public function __construct() {
     
    5757     * Add a new action to the collection to be registered with WordPress.
    5858     *
    59      * @since    1.0.1
     59     * @since    1.5.0
    6060     * @param    string               $hook             The name of the WordPress action that is being registered.
    6161     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7171     * Add a new filter to the collection to be registered with WordPress.
    7272     *
    73      * @since    1.0.1
     73     * @since    1.5.0
    7474     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7575     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8686     * collection.
    8787     *
    88      * @since    1.0.1
     88     * @since    1.5.0
    8989     * @access   private
    9090     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    113113     * Register the filters and actions with WordPress.
    114114     *
    115      * @since    1.0.1
     115     * @since    1.5.0
    116116     */
    117117    public function run() {
  • randomrss/trunk/includes/class-randomrss.php

    r2661674 r2745544  
    88 *
    99 * @link       https://paydelete.com/randomrss/
    10  * @since      1.0.1
     10 * @since      1.5.0
    1111 *
    1212 * @package    Randomrss
     
    2323 * version of the plugin.
    2424 *
    25  * @since      1.0.1
     25 * @since      1.5.0
    2626 * @package    Randomrss
    2727 * @subpackage Randomrss/includes
     
    3434     * the plugin.
    3535     *
    36      * @since    1.0.1
     36     * @since    1.5.0
    3737     * @access   protected
    3838     * @var      Randomrss_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4343     * The unique identifier of this plugin.
    4444     *
    45      * @since    1.0.1
     45     * @since    1.5.0
    4646     * @access   protected
    4747     * @var      string    $randomrss   The string used to uniquely identify this plugin.
     
    5252     * The current version of the plugin.
    5353     *
    54      * @since    1.0.1
     54     * @since    1.5.0
    5555     * @access   protected
    5656     * @var      string    $version    The current version of the plugin.
     
    6565     * the public-facing side of the site.
    6666     *
    67      * @since    1.0.1
     67     * @since    1.5.0
    6868     */
    6969    public function __construct() {
     
    7171            $this->version = RANDOMRSS_VERSION;
    7272        } else {
    73             $this->version = '1.0.1';
     73            $this->version = '1.5.0';
    7474        }
    7575        $this->randomrss = 'randomrss';
     
    9595     * with WordPress.
    9696     *
    97      * @since    1.0.1
     97     * @since    1.5.0
    9898     * @access   private
    9999     */
     
    133133     * with WordPress.
    134134     *
    135      * @since    1.0.1
     135     * @since    1.5.0
    136136     * @access   private
    137137     */
     
    148148     * of the plugin.
    149149     *
    150      * @since    1.0.1
     150     * @since    1.5.0
    151151     * @access   private
    152152     */
     
    164164     * of the plugin.
    165165     *
    166      * @since    1.0.1
     166     * @since    1.5.0
    167167     * @access   private
    168168     */
     
    179179     * Run the loader to execute all of the hooks with WordPress.
    180180     *
    181      * @since    1.0.1
     181     * @since    1.5.0
    182182     */
    183183    public function run() {
     
    189189     * WordPress and to define internationalization functionality.
    190190     *
    191      * @since     1.0.1
     191     * @since     1.5.0
    192192     * @return    string    The name of the plugin.
    193193     */
     
    199199     * The reference to the class that orchestrates the hooks with the plugin.
    200200     *
    201      * @since     1.0.1
     201     * @since     1.5.0
    202202     * @return    Randomrss_Loader    Orchestrates the hooks of the plugin.
    203203     */
     
    209209     * Retrieve the version number of the plugin.
    210210     *
    211      * @since     1.0.1
     211     * @since     1.5.0
    212212     * @return    string    The version number of the plugin.
    213213     */
  • randomrss/trunk/public/class-randomrss-public.php

    r2661679 r2745544  
    55 *
    66 * @link       https://paydelete.com/randomrss/
    7  * @since      1.0.1
     7 * @since      1.5.0
    88 *
    99 * @package    Randomrss
     
    2626     * The ID of this plugin.
    2727     *
    28      * @since    1.0.1
     28     * @since    1.5.0
    2929     * @access   private
    3030     * @var      string    $randomrss    The ID of this plugin.
     
    3535     * The version of this plugin.
    3636     *
    37      * @since    1.0.1
     37     * @since    1.5.0
    3838     * @access   private
    3939     * @var      string    $version    The current version of this plugin.
     
    4444     * Initialize the class and set its properties.
    4545     *
    46      * @since    1.0.1
     46     * @since    1.5.0
    4747     * @param      string    $randomrss      The name of the plugin.
    4848     * @param      string    $version    The version of this plugin.
     
    5858     * Register the stylesheets for the public-facing side of the site.
    5959     *
    60      * @since    1.0.1
     60     * @since    1.5.0
    6161     */
    6262    public function enqueue_styles() {
     
    8181     * Register the JavaScript for the public-facing side of the site.
    8282     *
    83      * @since    1.0.1
     83     * @since    1.5.0
    8484     */
    8585    public function enqueue_scripts() {
  • randomrss/trunk/public/partials/randomrss-public-display.php

    r2661679 r2745544  
    77 *
    88 * @link       https://paydelete.com/randomrss/
    9  * @since      1.0.1
     9 * @since      1.5.0
    1010 *
    1111 * @package    Randomrss
  • randomrss/trunk/randomrss.php

    r2661660 r2745544  
    33 *
    44 * @link              https://paydelete.com/randomrss/
    5  * @since             1.0.1
     5 * @since             1.5.0
    66 * @package           Randomrss
    77 *
     
    99 * Plugin Name:       Randomrss
    1010 * Plugin URI:        https://paydelete.com/randomrss/
    11  * Description:       The RandomRSS Plugin for Wordpress allows you to create RSS feeds featuring up to 10 random posts. Options include filtering by category, tag and new pub dates.
    12  * Version:           1.0.1
     11 * Description:       The RandomRSS Plugin for Wordpress allows you to create RSS feeds featuring up to 10 random posts. Options include filtering by category, tag, and date range as well as the ability to set the pubDate to the current date/time
     12 * Version:           1.5.0
    1313 * Author:            PayDelete
    1414 * Author URI:        https://profiles.wordpress.org/paydelete/
     
    2626/**
    2727 * Currently plugin version.
    28  * Start at version 1.0.1 and use SemVer - https://semver.org
     28 * Start at version 1.5.0 and use SemVer - https://semver.org
    2929 * Rename this for your plugin and update it as you release new versions.
    3030 */
    31 define( 'RANDOMRSS_VERSION', '1.0.1' );
     31define( 'RANDOMRSS_VERSION', '1.5.0' );
    3232
    3333/**
     
    6565 * not affect the page life cycle.
    6666 *
    67  * @since    1.0.1
     67 * @since    1.5.0
    6868 */
    6969function run_randomrss() {
  • randomrss/trunk/uninstall.php

    r2661660 r2745544  
    66 *
    77 * @link       https://paydelete.com/
    8  * @since      1.0.1
     8 * @since      1.5.0
    99 *
    1010 * @package    Randomrss
  • randomrss/trunk/vendor/composer/InstalledVersions.php

    r2661681 r2745544  
    2828  'root' =>
    2929  array (
    30     'pretty_version' => '1.0.1+no-version-set',
    31     'version' => '1.0.1.0',
     30    'pretty_version' => '1.5.0+no-version-set',
     31    'version' => '1.5.0.0',
    3232    'aliases' =>
    3333    array (
     
    4040    '__root__' =>
    4141    array (
    42       'pretty_version' => '1.0.1+no-version-set',
    43       'version' => '1.0.1.0',
     42      'pretty_version' => '1.5.0+no-version-set',
     43      'version' => '1.5.0.0',
    4444      'aliases' =>
    4545      array (
  • randomrss/trunk/vendor/composer/installed.php

    r2661681 r2745544  
    22  'root' =>
    33  array (
    4     'pretty_version' => '1.0.1+no-version-set',
    5     'version' => '1.0.1.0',
     4    'pretty_version' => '1.5.0+no-version-set',
     5    'version' => '1.5.0.0',
    66    'aliases' =>
    77    array (
     
    1414    '__root__' =>
    1515    array (
    16       'pretty_version' => '1.0.1+no-version-set',
    17       'version' => '1.0.1.0',
     16      'pretty_version' => '1.5.0+no-version-set',
     17      'version' => '1.5.0.0',
    1818      'aliases' =>
    1919      array (
Note: See TracChangeset for help on using the changeset viewer.