Plugin Directory

Changeset 1647711


Ignore:
Timestamp:
04/28/2017 09:20:23 PM (9 years ago)
Author:
graffino
Message:

v1.1.4

Location:
clear-floats-button
Files:
4 edited
9 copied

Legend:

Unmodified
Added
Removed
  • clear-floats-button/tags/1.1.4/CHANGELOG.md

    r1585675 r1647711  
    11## Changelog
     2
     3### 1.1.4
     4- Fix for undefined variable.
     5
     6### 1.1.3
     7- Cleanup & improved documentation. Added translation tags.
    28
    39### 1.1.2
  • clear-floats-button/tags/1.1.4/README.md

    r1645038 r1647711  
    1515
    1616## Changelog
     17
     18### 1.1.4
     19- Fix for undefined variable.
    1720
    1821### 1.1.3
  • clear-floats-button/tags/1.1.4/clear-floats-button.php

    r1645038 r1647711  
    44Plugin URI: https://github.com/Graffino/clear-floats-button
    55Description: Adds a clear floats button to TinyMCE
    6 Version: 1.1.3
     6Version: 1.1.4
    77Author: Graffino
    88Author URI: http://graffino.com
     
    1919
    2020/**
     21 * Create plugin name
     22 *
     23 * @since 1.1.3
     24 * @return string Plugin name.
     25 */
     26function get_plugin_name() {
     27    $plugin_name = preg_replace( '/\.php/', '', basename( __FILE__ ) );
     28    return $plugin_name;
     29}
     30
     31/**
    2132 * Load the TinyMCE plugin: editor_plugin.js
    2233 *
     
    2536 */
    2637function add_clear_floats_plugin( $plugin_array ) {
    27     $plugin_name = preg_replace( '/\.php/','',basename( __FILE__ ) );
     38    $plugin_name = get_plugin_name();
    2839    $plugin_array['clear'] = WP_PLUGIN_URL . '/' . $plugin_name . '/mce/clear/editor_plugin.min.js';
    2940
     
    8697 */
    8798function myplugin_load_textdomain() {
     99  $plugin_name = get_plugin_name();
    88100  load_plugin_textdomain( $plugin_name, false, basename( dirname( __FILE__ ) ) . '/languages' );
    89101}
  • clear-floats-button/tags/1.1.4/readme.txt

    r1645044 r1647711  
    44Requires at least: 2.9
    55Tested up to: 4.7
    6 Stable tag: 1.1.3
     6Stable tag: 1.1.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6161
    6262== Changelog ==
     63
     64= 1.1.4 =
     65- Fix for undefined variable.
    6366
    6467= 1.1.3 =
  • clear-floats-button/trunk/CHANGELOG.md

    r1585675 r1647711  
    11## Changelog
     2
     3### 1.1.4
     4- Fix for undefined variable.
     5
     6### 1.1.3
     7- Cleanup & improved documentation. Added translation tags.
    28
    39### 1.1.2
  • clear-floats-button/trunk/README.md

    r1645038 r1647711  
    1515
    1616## Changelog
     17
     18### 1.1.4
     19- Fix for undefined variable.
    1720
    1821### 1.1.3
  • clear-floats-button/trunk/clear-floats-button.php

    r1645038 r1647711  
    44Plugin URI: https://github.com/Graffino/clear-floats-button
    55Description: Adds a clear floats button to TinyMCE
    6 Version: 1.1.3
     6Version: 1.1.4
    77Author: Graffino
    88Author URI: http://graffino.com
     
    1919
    2020/**
     21 * Create plugin name
     22 *
     23 * @since 1.1.3
     24 * @return string Plugin name.
     25 */
     26function get_plugin_name() {
     27    $plugin_name = preg_replace( '/\.php/', '', basename( __FILE__ ) );
     28    return $plugin_name;
     29}
     30
     31/**
    2132 * Load the TinyMCE plugin: editor_plugin.js
    2233 *
     
    2536 */
    2637function add_clear_floats_plugin( $plugin_array ) {
    27     $plugin_name = preg_replace( '/\.php/','',basename( __FILE__ ) );
     38    $plugin_name = get_plugin_name();
    2839    $plugin_array['clear'] = WP_PLUGIN_URL . '/' . $plugin_name . '/mce/clear/editor_plugin.min.js';
    2940
     
    8697 */
    8798function myplugin_load_textdomain() {
     99  $plugin_name = get_plugin_name();
    88100  load_plugin_textdomain( $plugin_name, false, basename( dirname( __FILE__ ) ) . '/languages' );
    89101}
  • clear-floats-button/trunk/readme.txt

    r1645044 r1647711  
    44Requires at least: 2.9
    55Tested up to: 4.7
    6 Stable tag: 1.1.3
     6Stable tag: 1.1.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6161
    6262== Changelog ==
     63
     64= 1.1.4 =
     65- Fix for undefined variable.
    6366
    6467= 1.1.3 =
Note: See TracChangeset for help on using the changeset viewer.