Changeset 1647711
- Timestamp:
- 04/28/2017 09:20:23 PM (9 years ago)
- Location:
- clear-floats-button
- Files:
-
- 4 edited
- 9 copied
-
tags/1.1.4 (copied) (copied from clear-floats-button/trunk)
-
tags/1.1.4/CHANGELOG.md (copied) (copied from clear-floats-button/trunk/CHANGELOG.md) (1 diff)
-
tags/1.1.4/README.md (copied) (copied from clear-floats-button/trunk/README.md) (1 diff)
-
tags/1.1.4/clear-floats-button.php (copied) (copied from clear-floats-button/trunk/clear-floats-button.php) (4 diffs)
-
tags/1.1.4/mce/clear/css/clear.css (copied) (copied from clear-floats-button/trunk/mce/clear/css/clear.css)
-
tags/1.1.4/mce/clear/css/clear.min.css (copied) (copied from clear-floats-button/trunk/mce/clear/css/clear.min.css)
-
tags/1.1.4/mce/clear/editor_plugin.js (copied) (copied from clear-floats-button/trunk/mce/clear/editor_plugin.js)
-
tags/1.1.4/mce/clear/editor_plugin.min.js (copied) (copied from clear-floats-button/trunk/mce/clear/editor_plugin.min.js)
-
tags/1.1.4/readme.txt (copied) (copied from clear-floats-button/trunk/readme.txt) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/clear-floats-button.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
clear-floats-button/tags/1.1.4/CHANGELOG.md
r1585675 r1647711 1 1 ## Changelog 2 3 ### 1.1.4 4 - Fix for undefined variable. 5 6 ### 1.1.3 7 - Cleanup & improved documentation. Added translation tags. 2 8 3 9 ### 1.1.2 -
clear-floats-button/tags/1.1.4/README.md
r1645038 r1647711 15 15 16 16 ## Changelog 17 18 ### 1.1.4 19 - Fix for undefined variable. 17 20 18 21 ### 1.1.3 -
clear-floats-button/tags/1.1.4/clear-floats-button.php
r1645038 r1647711 4 4 Plugin URI: https://github.com/Graffino/clear-floats-button 5 5 Description: Adds a clear floats button to TinyMCE 6 Version: 1.1. 36 Version: 1.1.4 7 7 Author: Graffino 8 8 Author URI: http://graffino.com … … 19 19 20 20 /** 21 * Create plugin name 22 * 23 * @since 1.1.3 24 * @return string Plugin name. 25 */ 26 function get_plugin_name() { 27 $plugin_name = preg_replace( '/\.php/', '', basename( __FILE__ ) ); 28 return $plugin_name; 29 } 30 31 /** 21 32 * Load the TinyMCE plugin: editor_plugin.js 22 33 * … … 25 36 */ 26 37 function add_clear_floats_plugin( $plugin_array ) { 27 $plugin_name = preg_replace( '/\.php/','',basename( __FILE__ ));38 $plugin_name = get_plugin_name(); 28 39 $plugin_array['clear'] = WP_PLUGIN_URL . '/' . $plugin_name . '/mce/clear/editor_plugin.min.js'; 29 40 … … 86 97 */ 87 98 function myplugin_load_textdomain() { 99 $plugin_name = get_plugin_name(); 88 100 load_plugin_textdomain( $plugin_name, false, basename( dirname( __FILE__ ) ) . '/languages' ); 89 101 } -
clear-floats-button/tags/1.1.4/readme.txt
r1645044 r1647711 4 4 Requires at least: 2.9 5 5 Tested up to: 4.7 6 Stable tag: 1.1. 36 Stable tag: 1.1.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 62 62 == Changelog == 63 64 = 1.1.4 = 65 - Fix for undefined variable. 63 66 64 67 = 1.1.3 = -
clear-floats-button/trunk/CHANGELOG.md
r1585675 r1647711 1 1 ## Changelog 2 3 ### 1.1.4 4 - Fix for undefined variable. 5 6 ### 1.1.3 7 - Cleanup & improved documentation. Added translation tags. 2 8 3 9 ### 1.1.2 -
clear-floats-button/trunk/README.md
r1645038 r1647711 15 15 16 16 ## Changelog 17 18 ### 1.1.4 19 - Fix for undefined variable. 17 20 18 21 ### 1.1.3 -
clear-floats-button/trunk/clear-floats-button.php
r1645038 r1647711 4 4 Plugin URI: https://github.com/Graffino/clear-floats-button 5 5 Description: Adds a clear floats button to TinyMCE 6 Version: 1.1. 36 Version: 1.1.4 7 7 Author: Graffino 8 8 Author URI: http://graffino.com … … 19 19 20 20 /** 21 * Create plugin name 22 * 23 * @since 1.1.3 24 * @return string Plugin name. 25 */ 26 function get_plugin_name() { 27 $plugin_name = preg_replace( '/\.php/', '', basename( __FILE__ ) ); 28 return $plugin_name; 29 } 30 31 /** 21 32 * Load the TinyMCE plugin: editor_plugin.js 22 33 * … … 25 36 */ 26 37 function add_clear_floats_plugin( $plugin_array ) { 27 $plugin_name = preg_replace( '/\.php/','',basename( __FILE__ ));38 $plugin_name = get_plugin_name(); 28 39 $plugin_array['clear'] = WP_PLUGIN_URL . '/' . $plugin_name . '/mce/clear/editor_plugin.min.js'; 29 40 … … 86 97 */ 87 98 function myplugin_load_textdomain() { 99 $plugin_name = get_plugin_name(); 88 100 load_plugin_textdomain( $plugin_name, false, basename( dirname( __FILE__ ) ) . '/languages' ); 89 101 } -
clear-floats-button/trunk/readme.txt
r1645044 r1647711 4 4 Requires at least: 2.9 5 5 Tested up to: 4.7 6 Stable tag: 1.1. 36 Stable tag: 1.1.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 62 62 == Changelog == 63 64 = 1.1.4 = 65 - Fix for undefined variable. 63 66 64 67 = 1.1.3 =
Note: See TracChangeset
for help on using the changeset viewer.