Changeset 1445472
- Timestamp:
- 06/29/2016 06:23:28 AM (10 years ago)
- Location:
- wp-network-stats/trunk
- Files:
-
- 1 added
- 4 edited
-
README.txt (modified) (1 diff)
-
admin/class-network-stats-admin.php (modified) (3 diffs)
-
admin/js/network-stats-admin-visualization.js (added)
-
admin/js/network-stats-admin.js (modified) (3 diffs)
-
wp-network-stats.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-network-stats/trunk/README.txt
r1445429 r1445472 68 68 1. Requesting latest Network Stats. 69 69 2. Cancel previous request for network stats and generate fresh stats. 70 3. Email notification with network stats overview and requested stats' attachments.71 4. Some visualizations70 3. Visualization - Sites Registered over time. 71 4. Visualization - Users Registered over time. 72 72 5. Settings page for Network Stats. 73 6. Email notification with network stats overview and requested stats' attachments. 74 7. Stats - Plugins 75 8. Stats (Header only) - Users 76 9. Stats (Header only) - Themes 77 10. Stats (Header only) - Sites-1 78 11. Stats (Header only) - Sites-2 79 12. Stats (Header only) - Sites-3 80 13. Stats - User Stats Per Site 81 14. Stats - Plugin Stats Per Site 73 82 74 83 == Changelog == -
wp-network-stats/trunk/admin/class-network-stats-admin.php
r1445429 r1445472 110 110 * class. 111 111 */ 112 112 wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/network-stats-admin.js', array('jquery'), $this->version, false); 113 113 } 114 114 … … 121 121 */ 122 122 public function load_visualization_page_scripts() { 123 wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/network-stats-admin .js', array('jquery'), $this->version, false);123 wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/network-stats-admin-visualization.js', array('jquery'), $this->version, false); 124 124 wp_enqueue_script($this->plugin_name . '-timeseries', plugin_dir_url(__FILE__) . 'js/timeseries.js', array(), $this->version, true); 125 125 wp_enqueue_script($this->plugin_name . '-d3', "https://d3js.org/d3.v3.min.js", false); … … 784 784 $count_users = count($user_list); 785 785 786 echo "<input id='number_users' name='" . NS_OPTIONS_SETTINGS . "[number_users]' size='40' type='number' value='{$options['number_users']}' min='1' max='{$count_users}' />";787 echo "<p class='description'>(WIP) The number of users for one batch of the reports generation process.</p>";786 //echo "<input id='number_users' name='" . NS_OPTIONS_SETTINGS . "[number_users]' size='40' type='number' value='{$options['number_users']}' min='1' max='{$count_users}' />"; 787 //echo "<p class='description'>(WIP) The number of users for one batch of the reports generation process.</p>"; 788 788 } 789 789 -
wp-network-stats/trunk/admin/js/network-stats-admin.js
r1445429 r1445472 31 31 32 32 $( window ).load(function() { 33 /* 34 JS Date is number of milliseconds since 1970, PHP date is number of seconds since 1970. 35 */ 36 var blog_registered_data = JSON.parse(data_to_js.blog_registered_data); 37 var user_registered_data = JSON.parse(data_to_js.user_registered_data); 38 39 timeseries('timeseries blogs', blog_registered_data, true); 40 timeseries('timeseries users', user_registered_data, true); 41 33 42 34 }); 43 35 … … 54 46 document.getElementById(elm).disabled=value; 55 47 } 48 /* 56 49 function handleClickStatsSites(cb) { 57 50 pluginStatsPerSiteChecked = document.getElementById("cb_plugins_per_site").checked; … … 76 69 77 70 } 71 */ -
wp-network-stats/trunk/wp-network-stats.php
r1445429 r1445472 15 15 * @wordpress-plugin 16 16 * Plugin Name: WP Network Stats 17 * Plugin URI: https://github.com/sanghviharshit/ 17 * Plugin URI: https://github.com/sanghviharshit/wp-network-stats 18 18 * Description: View/Export useful network statistics related to sites, users per site, plugins per site, themes and plugins for all the sites in a WordPress multisite network. 19 * Version: 0.0.119 * Version: 1.0.1 20 20 * Author: Harshit Sanghvi 21 21 * Author URI: http://about.me/harshit … … 81 81 function set_globals() { 82 82 if ( ! defined( 'NS_VERSION' ) ) 83 define( 'NS_VERSION', ' 0.0.2' );83 define( 'NS_VERSION', '1.0.1' ); 84 84 if ( ! defined( 'NS_PLUGIN' ) ) 85 85 define( 'NS_PLUGIN', plugin_basename( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.