Changeset 2748005
- Timestamp:
- 06/25/2022 10:57:27 PM (3 years ago)
- Location:
- eth-escape-headspace2
- Files:
-
- 6 edited
- 1 copied
-
tags/0.2.2 (copied) (copied from eth-escape-headspace2/trunk)
-
tags/0.2.2/eth-escape-headspace.php (modified) (3 diffs)
-
tags/0.2.2/languages/eth-escape-headspace2.pot (modified) (1 diff)
-
tags/0.2.2/readme.txt (modified) (3 diffs)
-
trunk/eth-escape-headspace.php (modified) (3 diffs)
-
trunk/languages/eth-escape-headspace2.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eth-escape-headspace2/tags/0.2.2/eth-escape-headspace.php
r2681848 r2748005 1 1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName 2 2 /** 3 Plugin Name: ETH Escape HeadSpace2 4 Plugin URI: https://ethitter.com/plugins/ 5 Description: Output existing HeadSpace2 data without the original plugin. Allows HeadSpace2 (no longer maintained) to be deactivated without impactacting legacy content. 6 Author: Erick Hitter 7 Version: 0.2.1 8 Author URI: https://ethitter.com/ 9 10 This program is free software; you can redistribute it and/or modify 11 it under the terms of the GNU General Public License as published by 12 the Free Software Foundation; either version 2 of the License, or 13 (at your option) any later version. 14 15 This program is distributed in the hope that it will be useful, 16 but WITHOUT ANY WARRANTY; without even the implied warranty of 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 GNU General Public License for more details. 19 20 You should have received a copy of the GNU General Public License 21 along with this program; if not, write to the Free Software 22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 3 * Plugin Name: ETH Escape HeadSpace2 4 * Plugin URI: https://ethitter.com/plugins/ 5 * Description: Output existing HeadSpace2 data without the original plugin. Allows HeadSpace2 (no longer maintained) to be deactivated without impactacting legacy content. 6 * Author: Erick Hitter 7 * Version: 0.2.2 8 * Author URI: https://ethitter.com/ 9 * Text Domain: eth-escape-headspace2 10 * Domain Path: /languages/ 11 * 12 * This program is free software; you can redistribute it and/or modify 13 * it under the terms of the GNU General Public License as published by 14 * the Free Software Foundation; either version 2 of the License, or 15 * (at your option) any later version. 16 * 17 * This program is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 * GNU General Public License for more details. 21 * 22 * You should have received a copy of the GNU General Public License 23 * along with this program; if not, write to the Free Software 24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 23 25 */ 24 26 … … 102 104 public function maybe_add_hooks() { 103 105 // Defer to HeadSpace2 when active. 104 if ( class_exists( 'HeadSpace_Plugin' ) ) {106 if ( class_exists( 'HeadSpace_Plugin', false ) ) { 105 107 return; 106 108 } 109 110 add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) ); 107 111 108 112 add_filter( 'pre_get_document_title', array( $this, 'filter_pre_get_document_title' ) ); … … 111 115 add_action( 'wp_head', array( $this, 'action_wp_head' ) ); 112 116 add_action( 'wp_footer', array( $this, 'action_wp_footer' ) ); 117 } 118 119 /** 120 * Load plugin translations. 121 * 122 * @return void 123 */ 124 public function load_textdomain() { 125 load_plugin_textdomain( 126 'eth-escape-headspace2', 127 false, 128 dirname( plugin_basename( __FILE__ ) ) . '/languages/' 129 ); 113 130 } 114 131 -
eth-escape-headspace2/tags/0.2.2/languages/eth-escape-headspace2.pot
r2740954 r2748005 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/eth-escape-headspace\n" 8 "POT-Creation-Date: 2022-06- 11 18:55:07+00:00\n"8 "POT-Creation-Date: 2022-06-25 22:45:25+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" -
eth-escape-headspace2/tags/0.2.2/readme.txt
r2740954 r2748005 5 5 Requires at least: 4.4 6 6 Tested up to: 6.0 7 Stable tag: 0.2. 17 Stable tag: 0.2.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 0.2.2 = 53 * Fix translation support. 54 52 55 = 0.2.1 = 53 56 * PHP 7.3 compatibility. … … 62 65 == Upgrade Notice == 63 66 67 = 0.2.2 = 68 Fixes translation support. 69 64 70 = 0.2.1 = 65 Resolve dwarning arising in PHP 7.3.71 Resolves warning arising in PHP 7.3. -
eth-escape-headspace2/trunk/eth-escape-headspace.php
r2681848 r2748005 1 1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName 2 2 /** 3 Plugin Name: ETH Escape HeadSpace2 4 Plugin URI: https://ethitter.com/plugins/ 5 Description: Output existing HeadSpace2 data without the original plugin. Allows HeadSpace2 (no longer maintained) to be deactivated without impactacting legacy content. 6 Author: Erick Hitter 7 Version: 0.2.1 8 Author URI: https://ethitter.com/ 9 10 This program is free software; you can redistribute it and/or modify 11 it under the terms of the GNU General Public License as published by 12 the Free Software Foundation; either version 2 of the License, or 13 (at your option) any later version. 14 15 This program is distributed in the hope that it will be useful, 16 but WITHOUT ANY WARRANTY; without even the implied warranty of 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 GNU General Public License for more details. 19 20 You should have received a copy of the GNU General Public License 21 along with this program; if not, write to the Free Software 22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 3 * Plugin Name: ETH Escape HeadSpace2 4 * Plugin URI: https://ethitter.com/plugins/ 5 * Description: Output existing HeadSpace2 data without the original plugin. Allows HeadSpace2 (no longer maintained) to be deactivated without impactacting legacy content. 6 * Author: Erick Hitter 7 * Version: 0.2.2 8 * Author URI: https://ethitter.com/ 9 * Text Domain: eth-escape-headspace2 10 * Domain Path: /languages/ 11 * 12 * This program is free software; you can redistribute it and/or modify 13 * it under the terms of the GNU General Public License as published by 14 * the Free Software Foundation; either version 2 of the License, or 15 * (at your option) any later version. 16 * 17 * This program is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 * GNU General Public License for more details. 21 * 22 * You should have received a copy of the GNU General Public License 23 * along with this program; if not, write to the Free Software 24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 23 25 */ 24 26 … … 102 104 public function maybe_add_hooks() { 103 105 // Defer to HeadSpace2 when active. 104 if ( class_exists( 'HeadSpace_Plugin' ) ) {106 if ( class_exists( 'HeadSpace_Plugin', false ) ) { 105 107 return; 106 108 } 109 110 add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) ); 107 111 108 112 add_filter( 'pre_get_document_title', array( $this, 'filter_pre_get_document_title' ) ); … … 111 115 add_action( 'wp_head', array( $this, 'action_wp_head' ) ); 112 116 add_action( 'wp_footer', array( $this, 'action_wp_footer' ) ); 117 } 118 119 /** 120 * Load plugin translations. 121 * 122 * @return void 123 */ 124 public function load_textdomain() { 125 load_plugin_textdomain( 126 'eth-escape-headspace2', 127 false, 128 dirname( plugin_basename( __FILE__ ) ) . '/languages/' 129 ); 113 130 } 114 131 -
eth-escape-headspace2/trunk/languages/eth-escape-headspace2.pot
r2740954 r2748005 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/eth-escape-headspace\n" 8 "POT-Creation-Date: 2022-06- 11 18:55:07+00:00\n"8 "POT-Creation-Date: 2022-06-25 22:45:25+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" -
eth-escape-headspace2/trunk/readme.txt
r2740954 r2748005 5 5 Requires at least: 4.4 6 6 Tested up to: 6.0 7 Stable tag: 0.2. 17 Stable tag: 0.2.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 0.2.2 = 53 * Fix translation support. 54 52 55 = 0.2.1 = 53 56 * PHP 7.3 compatibility. … … 62 65 == Upgrade Notice == 63 66 67 = 0.2.2 = 68 Fixes translation support. 69 64 70 = 0.2.1 = 65 Resolve dwarning arising in PHP 7.3.71 Resolves warning arising in PHP 7.3.
Note: See TracChangeset
for help on using the changeset viewer.