Changeset 1949947
- Timestamp:
- 10/01/2018 08:58:54 PM (7 years ago)
- Location:
- wpperformancetester/trunk
- Files:
-
- 2 edited
-
WPPerformanceTester_Plugin.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpperformancetester/trunk/WPPerformanceTester_Plugin.php
r1284607 r1949947 40 40 //charting from results goes here 41 41 ?> 42 <h2>Performance Test Results (in seconds)</h2> 42 43 <div id="chartDiv"> 43 44 <div id="legendDiv"></div> 44 45 <canvas id="myChart" height="400" width="600"></canvas> 46 <p style="text-align: center; font-style: italic;">Test Type</p> 45 47 </div> 46 48 <p>* Lower (faster) time is better. Please submit your results to improve our industry average data :)</p> … … 51 53 52 54 var data = { 53 labels: ["Math ", "String", "Loops", "Conditionals", "MySql", "Server Overall", "WordPress"],55 labels: ["Math (CPU)", "String (CPU)", "Loops (CPU)", "Conditionals (CPU)", "MySql (Database)", "Server Total", "WordPress Performance"], 54 56 datasets: [ 55 57 { … … 258 260 if (!empty($options)) { 259 261 foreach ($options as $key => $arr) { 260 if (is_array($arr) && count($arr > 1)) {262 if (is_array($arr) && count($arr) > 1) { 261 263 $this->addOption($key, $arr[1]); 262 264 } -
wpperformancetester/trunk/readme.txt
r1284607 r1949947 1 1 === WPPerformanceTester === 2 2 Contributors: kohashi 3 Tags: performance, admin 3 Tags: performance, admin, benchmark 4 4 Requires at least: 3.5 5 Tested up to: 4. 36 Stable tag: 1.0 5 Tested up to: 4.9.8 6 Stable tag: 1.0.1 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 30 30 31 31 == Changelog == 32 = 1.0.1 = 33 34 Updated interface to make graphs and results more clear. 35 32 36 = 1.0 = 33 37
Note: See TracChangeset
for help on using the changeset viewer.