Plugin Directory

Changeset 1390102


Ignore:
Timestamp:
04/08/2016 09:59:32 AM (10 years ago)
Author:
wizzud
Message:

update 3.2.6

Location:
custom-menu-wizard/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • custom-menu-wizard/trunk/custom-menu-wizard.php

    r1382905 r1390102  
    44 * Plugin URI: http://wordpress.org/plugins/custom-menu-wizard/
    55 * Description: Show any part of a custom menu in a Widget, or in content using a Shortcode. Customise the output with extra classes or html; filter by current menu item or a specific item; set a depth, show the parent(s), change the list style, etc. Use the included emulator to assist with the filter settings.
    6  * Version: 3.2.5
     6 * Version: 3.2.6
    77 * Author: Roger Barrett
    88 * Author URI: http://www.wizzud.com/
     
    1212defined( 'ABSPATH' ) or exit();
    1313/*
     14 * v3.2.6 change log
     15 * - added cmw-current-item class to the menu item that CMW is using as 'current item'
     16 *
    1417 * v3.2.5 change log
    1518 * - added cmw-menu-item-had-children class to any menu item that originally had children, regardless of whether it still does when output
     
    184187    class Custom_Menu_Wizard_Plugin {
    185188
    186         public static $version = '3.2.5';
     189        public static $version = '3.2.6';
    187190        public static $script_handle = 'custom-menu-wizard-plugin-script';
    188191        public static $widget_class = 'Custom_Menu_Wizard_Widget';
  • custom-menu-wizard/trunk/doc/cmw-doc.html

    r1382905 r1390102  
    120120    <strong>Tested up to:</strong> 4.4</p>
    121121<p>
    122     <strong>Stable tag:</strong> 3.2.5</p>
     122    <strong>Stable tag:</strong> 3.2.6</p>
    123123<p>
    124124    <strong>License:</strong> GPLv2 or Later    </p>
     
    13051305                <div role="tabpanel" class="tab-pane fade" id="Changelog">
    13061306                    <h2>Changelog</h2>
    1307     <h4>3.2.5</h4>
     1307    <h4>3.2.6</h4>
     1308
     1309<ul>
     1310<li>addition : add cmw-current-item class to the menu item that CMW is using as 'current item'</li>
     1311</ul>
     1312
     1313<h4>3.2.5</h4>
    13081314
    13091315<ul>
  • custom-menu-wizard/trunk/include/class.walker.php

    r1382905 r1390102  
    328328            ksort( $currentItem );
    329329            $currentItem = array_shift( $currentItem );
     330            //add an extra class to the item that CMW is using as "current item"...
     331            $this->_cmw_tree[ $currentItem ]['classes'][] = 'cmw-current-item';
    330332        }
    331333
Note: See TracChangeset for help on using the changeset viewer.