Changeset 1818596
- Timestamp:
- 02/08/2018 10:21:49 PM (8 years ago)
- Location:
- post-volume-stats/trunk
- Files:
-
- 3 edited
-
post-volume-stats.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
sdpvs_settings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-volume-stats/trunk/post-volume-stats.php
r1818578 r1818596 2 2 /** 3 3 * @package post-volume-stats 4 * @version 3.1.1 14 * @version 3.1.12 5 5 */ 6 6 /* … … 10 10 * Author: Neil Ludlow 11 11 * Text Domain: post-volume-stats 12 * Version: 3.1.1 112 * Version: 3.1.12 13 13 * Author URI: http://www.shortdark.net/ 14 14 */ … … 37 37 define('SDPVS__PLUGIN_DIR', plugin_dir_path(__FILE__)); 38 38 define('SDPVS__PLUGIN_FOLDER', 'post-volume-stats'); 39 define('SDPVS__VERSION_NUMBER', '3.1.1 1');39 define('SDPVS__VERSION_NUMBER', '3.1.12'); 40 40 41 41 /****************** … … 246 246 247 247 // 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>"; 253 251 254 252 echo "<form action='" . esc_url(admin_url('options.php')) . "' method='POST'>"; -
post-volume-stats/trunk/readme.txt
r1818578 r1818596 48 48 == Changelog == 49 49 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 50 55 = 3.1.11 = 51 56 … … 53 58 * Fixed bug where sometimes the volume of posts can be a non integer. 54 59 * Added link to the Settings page from the main WordPress Plugins page. 60 * More Date Range fields added (beta). 55 61 56 62 = 3.1.10 = -
post-volume-stats/trunk/sdpvs_settings.php
r1818578 r1818596 64 64 echo "<div style='display: block; padding: 5px;'>"; 65 65 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\">"; 67 67 68 68 echo "</label><br>"; … … 76 76 echo "<div style='display: block; padding: 5px;'>"; 77 77 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\">"; 79 79 80 80 echo "</label><br>";
Note: See TracChangeset
for help on using the changeset viewer.