Plugin Directory

Changeset 1744320

Timestamp:
10/11/2017 12:56:22 AM (8 years ago)
Author:
jchristopher
Message:

Version 0.2.1

Location:
duplicate-menu/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • duplicate-menu/trunk/duplicate-menu.php

    r963806 r1744320  
    66Description: Easily duplicate your WordPress Menus
    77Author: Jonathan Christopher
    8 Version: 0.2
     8Version: 0.2.1
    99Author URI: http://mondaybynoon.com
    1010*/
    1111
    12 /*  Copyright 2011-2014 Jonathan Christopher (email : jonathan@mondaybynoon.com)
     12/*  Copyright 2011-2017 Jonathan Christopher (email : jonathan@mondaybynoon.com)
    1313
    1414 This program is free software; you can redistribute it and/or modify
     
    2727 */
    2828
    29 define( 'DUPLICATE_MENU_VERSION',   '0.2' );
     29define( 'DUPLICATE_MENU_VERSION',   '0.2.1' );
    3030define( 'DUPLICATE_MENU_DIR',       plugin_dir_path( __FILE__ ) );
    3131define( 'DUPLICATE_MENU_URL',       plugin_dir_url( __FILE__ ) );
     
    3838
    3939/**
    40 * Duplicate Menu
    41 */
     40 * Duplicate Menu
     41 */
    4242class DuplicateMenu {
    4343
     44    /**
     45     * The duplication process
     46     */
    4447    function duplicate( $id = null, $name = null ) {
    4548
     
    99102    }
    100103
     104    /*
     105     * Output the options screen
     106     */
    101107    function options_screen() {
    102108        $nav_menus = wp_get_nav_menus();
  • duplicate-menu/trunk/readme.md

    r1139699 r1744320  
    1 This is a WordPress plugin. [Official download available on wordpress.org](http://wordpress.org/extend/plugins/duplicate-menu/).
     1This is a WordPress plugin. [Official download available on wordpress.org](https://wordpress.org/plugins/duplicate-menu/).
    22
    33# Duplicate Menu
     
    1111Duplicate Menu will allow you to create a second (or third, or fourth, etc.) copy of an existing Menu to do with what you will. It generates the clone on a programmatic level and recreates all necessary relationships to ensure the structure is retained as well.
    1212
    13 Find out more information in my [explanatory article on Duplicate Menu](http://mondaybynoon.com/20120723/wordpress-plugin-duplicate-menu/)
     13Find out more information in my [explanatory article on Duplicate Menu](http://mondaybynoon.com/wordpress-plugin-duplicate-menu/)
    1414
    1515## Installation
     
    2323After activation, navigate to Appearance > Duplicate Menu to create a copy of an existing Menu
    2424
    25 ![Easily create a carbon copy of an existing Menu](http://mondaybynoon.com/wp-content/uploads/duplicate-menu-screenshot-1.png)
     25![Easily create a carbon copy of an existing Menu](https://mondaybynoon.com/wp-content/uploads/2017/10/screenshot-1.png)
    2626
    2727### Changelog
     
    2929<dl>
    3030
     31    <dt>0.2.1</dt>
     32    <dd>Added some inline documentation</dd>
     33    <dd>Fixed link in readme</dd>
     34    <dd>Updated screenshot</dd>
     35
    3136    <dt>0.2</dt>
    3237    <dd>Added <code>duplicate_menu_item</code> action, allowing devs to bolt on custom functionality</dd>
    3338
    34     <dt>0.1.1</dt>
    35     <dd>Removed anonymous function call to support PHP <5.3 installs</dd>
    36     <dd>Added link to GitHub, please contribute!</dd>
     39    <dt>0.1.1</dt>
     40    <dd>Removed anonymous function call to support PHP &lt;5.3 installs</dd>
     41    <dd>Added link to GitHub, please contribute!</dd>
    3742
    38     <dt>0.1</dt>
    39     <dd>Initial release</dd>
     43    <dt>0.1</dt>
     44    <dd>Initial release</dd>
    4045
    4146</dl>
  • duplicate-menu/trunk/readme.txt

    r1703467 r1744320  
    44Tags: menu, duplicate, copy, clone
    55Requires at least: 3.4.2
    6 Tested up to: 4.8
    7 Stable tag: 0.2
     6Tested up to: 4.8.2
     7Stable tag: 0.2.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1717Duplicate Menu will allow you to create a second (or third, or fourth, etc.) copy of an existing Menu to do with what you will. It generates the clone on a programmatic level and recreates all necessary relationships to ensure the structure is retained as well.
    1818
    19 Find out more information in my [explanatory article on Duplicate Menu](http://mondaybynoon.com/20120723/wordpress-plugin-duplicate-menu/)
     19Find out more information in my [explanatory article on Duplicate Menu](https://mondaybynoon.com/wordpress-plugin-duplicate-menu/)
    2020
    2121== Installation ==
    2222
    23231. Download the plugin and extract the files
    24 1. Upload `duplicate-posts` to your `~/wp-content/plugins/` directory
     241. Upload `duplicate-menu` to your `~/wp-content/plugins/` directory
    25251. Activate the plugin through the 'Plugins' menu in WordPress
    2626
     
    3030
    3131== Changelog ==
     32
     33= 0.2.1 =
     34* Added some inline documentation
     35* Fixed link in readme
     36* Updated screenshot
    3237
    3338= 0.2 =
Note: See TracChangeset for help on using the changeset viewer.