Changeset 2094918
- Timestamp:
- 05/25/2019 09:21:12 AM (7 years ago)
- Location:
- pushe-webpush/trunk
- Files:
-
- 6 edited
-
inc/api/callbacks/ModalOptionsCallback.php (modified) (1 diff)
-
inc/api/callbacks/SettingsCallbacks.php (modified) (1 diff)
-
inc/base/BaseController.php (modified) (1 diff)
-
inc/base/WebpushScripts.php (modified) (1 diff)
-
pushe-webpush.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pushe-webpush/trunk/inc/api/callbacks/ModalOptionsCallback.php
r2092842 r2094918 13 13 public function pusheModalOptionsPage() 14 14 { 15 return require_once( "$this->plugin_path/templates/modalOptions.php");15 return require_once($this->plugin_path . "templates/modalOptions.php"); 16 16 } 17 17 -
pushe-webpush/trunk/inc/api/callbacks/SettingsCallbacks.php
r2092842 r2094918 10 10 public function pusheSettingsPage() 11 11 { 12 return require_once( "$this->plugin_path/templates/settings.php");12 return require_once($this->plugin_path . "templates/settings.php"); 13 13 } 14 14 -
pushe-webpush/trunk/inc/base/BaseController.php
r2092842 r2094918 8 8 class BaseController 9 9 { 10 public $plugin_path; 11 public $plugin_url; 10 public $plugin_path; // Has "/" at the end 11 public $plugin_url; // Has "/" at the end 12 12 public $plugin; 13 13 -
pushe-webpush/trunk/inc/base/WebpushScripts.php
r2092842 r2094918 26 26 $this->webpush_enabled = boolval($this->getSettingValue('webpush_enabled')); 27 27 28 $this->service_worker = "$this->plugin_path/assets/pushe-sw.js";28 $this->service_worker = $this->plugin_path . "assets/pushe-sw.js"; 29 29 $this->service_worker_dest = ABSPATH . "pushe-sw.js"; 30 30 } -
pushe-webpush/trunk/pushe-webpush.php
r2092842 r2094918 6 6 * Plugin Name: Pushe Webpush 7 7 * Description: Official Pushe.co's webpush plugin for wordpress. 8 * version: 0. 1.08 * version: 0.2.0 9 9 * Author: pushe.co 10 10 * Author URI: https://pushe.co -
pushe-webpush/trunk/readme.txt
r2092842 r2094918 20 20 == changelog == 21 21 22 = 0.2.0 = 23 * Fix some minor bugs 24 22 25 = 0.1.0 = 23 26 * First release of the plugin
Note: See TracChangeset
for help on using the changeset viewer.