Changeset 2029406
- Timestamp:
- 02/12/2019 04:15:04 PM (7 years ago)
- Location:
- fireems-stats
- Files:
-
- 10 edited
- 1 copied
-
tags/2.2.1 (copied) (copied from fireems-stats/trunk)
-
tags/2.2.1/admin/class-fireems-stats-admin.php (modified) (2 diffs)
-
tags/2.2.1/admin/partials/fireems-stats-display.php (modified) (1 diff)
-
tags/2.2.1/fireems-stats.php (modified) (1 diff)
-
tags/2.2.1/includes/class-fireems-stats.php (modified) (1 diff)
-
tags/2.2.1/readme.txt (modified) (3 diffs)
-
trunk/admin/class-fireems-stats-admin.php (modified) (2 diffs)
-
trunk/admin/partials/fireems-stats-display.php (modified) (1 diff)
-
trunk/fireems-stats.php (modified) (1 diff)
-
trunk/includes/class-fireems-stats.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fireems-stats/tags/2.2.1/admin/class-fireems-stats-admin.php
r1540678 r2029406 116 116 add_action('check_year', $this->year_exists()); 117 117 118 $maltese = $this->get_software_notes(); 119 118 120 include_once('partials/fireems-stats-display.php'); 119 121 … … 536 538 } 537 539 540 541 /** 542 * Get updates from Maltese Solutions 543 * 544 * @since 2.1.0 545 */ 546 public function get_software_notes() { 547 548 $api_check = array( 549 550 'maltese-api' => 'maltese-', 551 552 ); 553 554 $response = wp_remote_get( add_query_arg( $api_check,'https://maltesesolutions.com' ), array( 'timeout' => 20, 'sslverify' => false ) ); 555 556 return $software_info = json_decode( wp_remote_retrieve_body( $response ) ); 557 558 } 559 560 561 562 /** 563 * Decode the data 564 * 565 * @since 2.0.0 566 */ 538 567 public function decode_data(){ 539 568 -
fireems-stats/tags/2.2.1/admin/partials/fireems-stats-display.php
r1477223 r2029406 99 99 </div> 100 100 101 102 <?php 103 104 if (isset( $maltese )) { 105 if ( $maltese->success == true ) { 106 107 echo '<div class="col-md">'; 108 echo '<div class="alert '.$maltese->alert.'" role="alert">'.$maltese->message.'</div>'; 109 echo '</div>'; 110 } 111 } 112 113 ?> 114 101 115 <div class="row fire-admin-footer"> 102 116 -
fireems-stats/tags/2.2.1/fireems-stats.php
r1540681 r2029406 17 17 * Plugin URI: http://www.maltesesolutions.com 18 18 * Description: Plugin that allows your Fire or EMS Organizaiton to list its monthly activity. 19 * Version: 2. 1.019 * Version: 2.2.1 20 20 * Author: MalteseSolutions 21 21 * Author URI: http://www.maltesesolutions.com -
fireems-stats/tags/2.2.1/includes/class-fireems-stats.php
r1477223 r2029406 80 80 $this->plugin_name = 'fireems'; 81 81 82 $this->version = '2. 0.0';82 $this->version = '2.2.1'; 83 83 84 84 $this->author = 'Maltese Solutions'; -
fireems-stats/tags/2.2.1/readme.txt
r2011601 r2029406 1 === FireEMS Stats (Lite)===1 === FireEMS Stats === 2 2 Contributors: MalteseSolutions 3 3 Tags: fire department, EMS, monthly calls, fire stats, ems stats, fire 4 4 Requires at least: 4.0 5 5 Tested up to: 5.0 6 Stable tag: 2. 1.16 Stable tag: 2.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 == Description == 13 13 14 FireEMS Stats (Lite)allows your Fire or EMS Organization to list montly activity on the front page.14 FireEMS Stats allows your Fire or EMS Organization to list montly activity on the front page. 15 15 16 16 Edit your stats manually to keep your visitors and community up to date. … … 51 51 52 52 == Changelog == 53 54 = 2.2.1 (2019-01-29) = 55 * Added JSON to recieve important updates from Maltese Solutions 53 56 54 57 = 2.1.1 (2019-01-13) = -
fireems-stats/trunk/admin/class-fireems-stats-admin.php
r1540678 r2029406 116 116 add_action('check_year', $this->year_exists()); 117 117 118 $maltese = $this->get_software_notes(); 119 118 120 include_once('partials/fireems-stats-display.php'); 119 121 … … 536 538 } 537 539 540 541 /** 542 * Get updates from Maltese Solutions 543 * 544 * @since 2.1.0 545 */ 546 public function get_software_notes() { 547 548 $api_check = array( 549 550 'maltese-api' => 'maltese-', 551 552 ); 553 554 $response = wp_remote_get( add_query_arg( $api_check,'https://maltesesolutions.com' ), array( 'timeout' => 20, 'sslverify' => false ) ); 555 556 return $software_info = json_decode( wp_remote_retrieve_body( $response ) ); 557 558 } 559 560 561 562 /** 563 * Decode the data 564 * 565 * @since 2.0.0 566 */ 538 567 public function decode_data(){ 539 568 -
fireems-stats/trunk/admin/partials/fireems-stats-display.php
r1477223 r2029406 99 99 </div> 100 100 101 102 <?php 103 104 if (isset( $maltese )) { 105 if ( $maltese->success == true ) { 106 107 echo '<div class="col-md">'; 108 echo '<div class="alert '.$maltese->alert.'" role="alert">'.$maltese->message.'</div>'; 109 echo '</div>'; 110 } 111 } 112 113 ?> 114 101 115 <div class="row fire-admin-footer"> 102 116 -
fireems-stats/trunk/fireems-stats.php
r1540681 r2029406 17 17 * Plugin URI: http://www.maltesesolutions.com 18 18 * Description: Plugin that allows your Fire or EMS Organizaiton to list its monthly activity. 19 * Version: 2. 1.019 * Version: 2.2.1 20 20 * Author: MalteseSolutions 21 21 * Author URI: http://www.maltesesolutions.com -
fireems-stats/trunk/includes/class-fireems-stats.php
r1477223 r2029406 80 80 $this->plugin_name = 'fireems'; 81 81 82 $this->version = '2. 0.0';82 $this->version = '2.2.1'; 83 83 84 84 $this->author = 'Maltese Solutions'; -
fireems-stats/trunk/readme.txt
r2011601 r2029406 1 === FireEMS Stats (Lite)===1 === FireEMS Stats === 2 2 Contributors: MalteseSolutions 3 3 Tags: fire department, EMS, monthly calls, fire stats, ems stats, fire 4 4 Requires at least: 4.0 5 5 Tested up to: 5.0 6 Stable tag: 2. 1.16 Stable tag: 2.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 == Description == 13 13 14 FireEMS Stats (Lite)allows your Fire or EMS Organization to list montly activity on the front page.14 FireEMS Stats allows your Fire or EMS Organization to list montly activity on the front page. 15 15 16 16 Edit your stats manually to keep your visitors and community up to date. … … 51 51 52 52 == Changelog == 53 54 = 2.2.1 (2019-01-29) = 55 * Added JSON to recieve important updates from Maltese Solutions 53 56 54 57 = 2.1.1 (2019-01-13) =
Note: See TracChangeset
for help on using the changeset viewer.