Plugin Directory

Changeset 1478151


Ignore:
Timestamp:
08/18/2016 07:23:57 PM (10 years ago)
Author:
Khothemes
Message:

new version

Location:
ultimate-widgets-light
Files:
661 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • ultimate-widgets-light/trunk/assets/admin/dashboard.php

    r1466962 r1478151  
    66}
    77
    8 if (!class_exists('KhoThemesDashboardWidgetUWL')) {
    9     class KhoThemesDashboardWidgetUWL {
     8if (!class_exists('PlutonWPDashboardWidgetUWL')) {
     9    class PlutonWPDashboardWidgetUWL {
    1010
    1111        public function __construct () {
    12             add_action('wp_dashboard_setup', array($this,'add_kt_dashboard_uwl'));
     12            add_action('wp_dashboard_setup', array($this,'add_pluton_dashboard_uwl'));
    1313        }
    1414       
    15         public function add_kt_dashboard_uwl() {
     15        public function add_pluton_dashboard_uwl() {
    1616            global $wp_meta_boxes;
    17             add_meta_box('kt_dashboard_widget_uwl', __( 'PlutonWP News' ), array($this,'kt_dashboard_widget_uwl'), 'dashboard', 'side', 'high');
     17            add_meta_box('pluton_dashboard_widget_uwl', __( 'PlutonWP News' ), array($this,'pluton_dashboard_widget_uwl'), 'dashboard', 'side', 'high');
    1818            if ( '1' == uwl_option( 'remove-news', '0' ) ) {
    19                 unset( $wp_meta_boxes['dashboard']['side']['high']['kt_dashboard_widget_uwl'] );
     19                unset( $wp_meta_boxes['dashboard']['side']['high']['pluton_dashboard_widget_uwl'] );
    2020            }
    2121        }
    2222       
    23         public function kt_dashboard_widget_uwl() {
     23        public function pluton_dashboard_widget_uwl() {
    2424            echo '<div class="rss-widget">';
    2525                wp_widget_rss_output(
     
    3737    }
    3838   
    39     new KhoThemesDashboardWidgetUWL();
     39    new PlutonWPDashboardWidgetUWL();
    4040}
  • ultimate-widgets-light/trunk/assets/admin/redux-core/framework.php

    r1466962 r1478151  
    7070            // This will make for easier support when we ask users what version they are using.
    7171
    72             public static $_version = '3.6.0.11';
     72            public static $_version = '3.6.1';
    7373            public static $_dir;
    7474            public static $_url;
  • ultimate-widgets-light/trunk/functions.php

    r1466962 r1478151  
    1010 * Text Domain: kho
    1111 * Domain Path: /languages/
    12  * Version:     1.5.5
     12 * Version:     1.5.6
    1313 *
    1414 * @fs_premium_only /premium/
     
    6161define( 'UWL_PLUGIN', __FILE__ );
    6262define( 'UWL_PLUGIN_DIR', untrailingslashit( dirname( UWL_PLUGIN ) ) );
    63 define( 'UWL_VERSION', '1.5.5' );
     63define( 'UWL_VERSION', '1.5.6' );
    6464function uwl_plugin_url( $path = '' )
    6565{
  • ultimate-widgets-light/trunk/readme.txt

    r1466962 r1478151  
    55Requires at least: 4.1
    66Tested up to: 4.6
    7 Stable tag: 1.5.5
     7Stable tag: 1.5.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    116116== Changelog ==
    117117
     118= 1.5.6 =
     119
     120* Redux Framework updated.
     121
    118122= 1.5.5 =
    119123
Note: See TracChangeset for help on using the changeset viewer.