Plugin Directory

Changeset 1818596


Ignore:
Timestamp:
02/08/2018 10:21:49 PM (8 years ago)
Author:
shortdark
Message:

Tidied Date Range page and added explanation.

Location:
post-volume-stats/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • post-volume-stats/trunk/post-volume-stats.php

    r1818578 r1818596  
    22/**
    33 * @package post-volume-stats
    4  * @version 3.1.11
     4 * @version 3.1.12
    55 */
    66/*
     
    1010 * Author: Neil Ludlow
    1111 * Text Domain: post-volume-stats
    12  * Version: 3.1.11
     12 * Version: 3.1.12
    1313 * Author URI: http://www.shortdark.net/
    1414 */
     
    3737define('SDPVS__PLUGIN_DIR', plugin_dir_path(__FILE__));
    3838define('SDPVS__PLUGIN_FOLDER', 'post-volume-stats');
    39 define('SDPVS__VERSION_NUMBER', '3.1.11');
     39define('SDPVS__VERSION_NUMBER', '3.1.12');
    4040
    4141/******************
     
    246246
    247247        // Content goes here
    248         echo '<h1 class="sdpvs">' . esc_html__('Post Volume Stats: Date Range Select', 'post-volume-stats') . '</h1>';
    249 
    250         echo "<p>On this page you can select the year that you wishe to study. It is an alternative to clicking the bars of the \"Year\" bar chart. To view all years together select the blank option at the top.</p>";
    251 
    252         echo "<p>Eventually, this page will also enable you to be able to select a date range for the stats. For example, September 2016 to September 2017.</p>";
     248        echo '<h1 class="sdpvs">' . esc_html__('Post Volume Stats: Date Range Select (BETA)', 'post-volume-stats') . '</h1>';
     249        echo "<p>On this page you can select the year that you wish to study. It is an alternative to clicking the bars of the \"Year\" bar chart. To view all years together select the blank option at the top.</p>";
     250        echo "<p>The date range does not work properly. Please use the main year select on the other pages.</p>";
    253251
    254252        echo "<form action='" . esc_url(admin_url('options.php')) . "' method='POST'>";
  • post-volume-stats/trunk/readme.txt

    r1818578 r1818596  
    4848== Changelog ==
    4949
     50= 3.1.12 =
     51
     52* Tidied Date Range page.
     53* Added explanation to Date Range: this page is experimental, please use the year select on the other pages.
     54
    5055= 3.1.11 =
    5156
     
    5358* Fixed bug where sometimes the volume of posts can be a non integer.
    5459* Added link to the Settings page from the main WordPress Plugins page.
     60* More Date Range fields added (beta).
    5561
    5662= 3.1.10 =
  • post-volume-stats/trunk/sdpvs_settings.php

    r1818578 r1818596  
    6464    echo "<div style='display: block; padding: 5px;'>";
    6565
    66     echo "<label>$earliest_date <input name=\"sdpvs_year_option[start_date]\" id=\"start-date\" value=\"$selected\">";
     66    echo "<label>YYYY-MM-DD <input name=\"sdpvs_year_option[start_date]\" id=\"start-date\" value=\"$selected\">";
    6767   
    6868    echo "</label><br>";
     
    7676    echo "<div style='display: block; padding: 5px;'>";
    7777
    78     echo "<label><input name=\"sdpvs_year_option[end_date]\" id=\"end-date\" value=\"$selected\">";
     78    echo "<label>YYYY-MM-DD <input name=\"sdpvs_year_option[end_date]\" id=\"end-date\" value=\"$selected\">";
    7979   
    8080    echo "</label><br>";
Note: See TracChangeset for help on using the changeset viewer.