Changeset 1679697
- Timestamp:
- 06/16/2017 06:29:37 AM (9 years ago)
- Location:
- techxplorers-ping-recorder/trunk
- Files:
-
- 4 deleted
- 6 edited
-
README.txt (modified) (2 diffs)
-
admin/class-txp-ping-recorder-admin.php (modified) (2 diffs)
-
admin/css/txp-ping-recorder-admin.css (deleted)
-
admin/js/txp-ping-recorder-admin.js (deleted)
-
includes/class-txp-ping-recorder-i18n.php (modified) (1 diff)
-
includes/class-txp-ping-recorder.php (modified) (4 diffs)
-
public/class-txp-ping-recorder-public.php (modified) (2 diffs)
-
public/css/txp-ping-recorder-public.css (deleted)
-
public/js/txp-ping-recorder-public.js (deleted)
-
txp-ping-recorder.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
techxplorers-ping-recorder/trunk/README.txt
r1579457 r1679697 3 3 Tags: admin, ssh, ping, server 4 4 Requires at least: 4.7 5 Tested up to: 4. 75 Tested up to: 4.8 6 6 Stable tag: trunk 7 7 License: GPLv2 or later … … 40 40 == Changelog == 41 41 42 = 1.1.1 = 43 * Confirm compatibility with WordPress 4.8 44 * Fix code style errors using latest WordPress code style 45 42 46 = 1.1.0 = 43 47 * Released to the WordPress plugin directory. -
techxplorers-ping-recorder/trunk/admin/class-txp-ping-recorder-admin.php
r1579457 r1679697 59 59 public function enqueue_styles() { 60 60 // Include the admin CSS. 61 wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/txp-ping-recorder-admin.css', array(), $this->version, 'all' );62 61 } 63 62 … … 69 68 public function enqueue_scripts() { 70 69 // Include the admin JavaScript. 71 wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/txp-ping-recorder-admin.js', array( 'jquery' ), $this->version, false );72 70 } 73 71 -
techxplorers-ping-recorder/trunk/includes/class-txp-ping-recorder-i18n.php
r1579457 r1679697 24 24 * @author techxplorer <corey@techxplorer.com> 25 25 */ 26 class Txp_Ping_Recorder_ i18n {26 class Txp_Ping_Recorder_I18n { 27 27 28 28 -
techxplorers-ping-recorder/trunk/includes/class-txp-ping-recorder.php
r1579457 r1679697 78 78 79 79 $this->plugin_name = 'txp-ping-recorder'; 80 $this->version = '1.1. 0';80 $this->version = '1.1.1'; 81 81 82 82 $this->load_dependencies(); … … 93 93 * 94 94 * - Txp_Ping_Recorder_Loader. Orchestrates the hooks of the plugin. 95 * - Txp_Ping_Recorder_ i18n. Defines internationalization functionality.95 * - Txp_Ping_Recorder_I18n. Defines internationalization functionality. 96 96 * - Txp_Ping_Recorder_Admin. Defines all hooks for the admin area. 97 97 * - Txp_Ping_Recorder_Public. Defines all hooks for the public side of the site. … … 138 138 * Define the locale for this plugin for internationalization. 139 139 * 140 * Uses the Txp_Ping_Recorder_ i18n class in order to set the domain and to register the hook140 * Uses the Txp_Ping_Recorder_I18n class in order to set the domain and to register the hook 141 141 * with WordPress. 142 142 * … … 146 146 private function set_locale() { 147 147 148 $plugin_i18n = new Txp_Ping_Recorder_ i18n();148 $plugin_i18n = new Txp_Ping_Recorder_I18n(); 149 149 150 150 $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' ); -
techxplorers-ping-recorder/trunk/public/class-txp-ping-recorder-public.php
r1579457 r1679697 58 58 */ 59 59 public function enqueue_styles() { 60 wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/txp-ping-recorder-public.css', array(), $this->version, 'all' ); 60 61 61 } 62 62 … … 67 67 */ 68 68 public function enqueue_scripts() { 69 wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/txp-ping-recorder-public.js', array( 'jquery' ), $this->version, false ); 69 70 70 } 71 71 -
techxplorers-ping-recorder/trunk/txp-ping-recorder.php
r1579457 r1679697 15 15 * Plugin Name: Techxplorer's Ping Recorder 16 16 * Plugin URI: https://techxplorer.com/projects/txp-ping-recorder 17 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.18 * Version: 1.1. 017 * Description: Records 'pings' from a home server to make it easy to remotely access it. 18 * Version: 1.1.1 19 19 * Author: techxplorer 20 20 * Author URI: https://techxplorer.com/
Note: See TracChangeset
for help on using the changeset viewer.