💦 FULL SET: Changeset/ - HD Photos!

Changeset 3277427


Ignore:
Timestamp:
04/20/2025 04:49:02 AM (8 months ago)
Author:
dontdream
Message:

tagging version 5.9.4

Location:
menubar
Files:
6 edited
4 copied

Legend:

Unmodified
Added
Removed
  • menubar/tags/5.9.4/readme.txt

    r3189889 r3277427  
    44License:            GPLv2 or later
    55Requires at least:  6.1
    6 Tested up to:       6.7
    7 Stable tag:         5.9.3
     6Tested up to:       6.8
     7Stable tag:         5.9.4
    88
    99Single and multi-level menus for your WordPress site, styled with customizable menu templates.
     
    3535== Changelog ==
    3636
     37= 5.9.4 =
     38* Fixed a few notices related to *load_plugin_textdomain*
    3739= 5.9.3 =
    3840* Expanded the documentation section
  • menubar/tags/5.9.4/wpm-db.php

    r1257428 r3277427  
    11<?php
    2 
    3 $wpm_type_list = array (
    4 'Home'          => 'Home'           . __(': the main page of your blog', 'menubar'),
    5 'FrontPage'     => 'FrontPage'      . __(': the front page of your site', 'menubar'),
    6 'Heading'       => 'Heading'        . __(': a non clickable item', 'menubar'),
    7 'Tag'           => 'Tag'            . __(': a tag archive', 'menubar'),
    8 'TagList'       => 'TagList'        . __(': the tag archive list', 'menubar'),
    9 'Category'      => 'Category'       . __(': a category archive', 'menubar'),
    10 'CategoryTree'  => 'CategoryTree'   . __(': a category archive, with subcategories', 'menubar'),
    11 'Page'          => 'Page'           . __(': a static page', 'menubar'),
    12 'PageTree'      => 'PageTree'       . __(': a static page, with subpages', 'menubar'),
    13 'Post'          => 'Post'           . __(': a single post', 'menubar'),
    14 'SearchBox'     => 'SearchBox'      . __(': a search box', 'menubar'),
    15 'External'      => 'External'       . __(': any static URL', 'menubar'),
    16 'PHP'           => 'PHP'            . __(': any PHP generated label and URL', 'menubar'),
    17 'Custom'        => 'Custom'         . __(': your custom HTML', 'menubar'),
    18 );
    192
    203$wpm_type_fields = array (
     
    3518);
    3619
    37 $wpm_field_name = array (
    38 'name'          => __('Name', 'menubar'),
    39 'imageurl'      => __('Image', 'menubar'),
    40 'type'          => __('Type', 'menubar'),
    41 'selection'     => __('Selection', 'menubar'),
    42 'cssclass'      => __('CSS class', 'menubar'),
    43 'attributes'    => __('Attributes', 'menubar'),
    44 'depth'         => __('Depth', 'menubar'),
    45 'exclude'       => __('Exclude', 'menubar'),
    46 'headings'      => __('Headings', 'menubar'),
    47 'sortby'        => __('Sort by', 'menubar'),
    48 );
    49 
    5020$wpm_field_type = array (
    5121'name'          => 'string',
     
    246216function wpm_display_fields ($item)
    247217{
    248     global $wpm_type_fields, $wpm_field_name, $wpm_field_type;
     218    global $wpm_type_fields, $wpm_field_type;
     219
     220    $wpm_field_name = array (
     221        'name'          => __('Name', 'menubar'),
     222        'imageurl'      => __('Image', 'menubar'),
     223        'type'          => __('Type', 'menubar'),
     224        'selection'     => __('Selection', 'menubar'),
     225        'cssclass'      => __('CSS class', 'menubar'),
     226        'attributes'    => __('Attributes', 'menubar'),
     227        'depth'         => __('Depth', 'menubar'),
     228        'exclude'       => __('Exclude', 'menubar'),
     229        'headings'      => __('Headings', 'menubar'),
     230        'sortby'        => __('Sort by', 'menubar'),
     231    );
    249232
    250233    $out = '';
  • menubar/tags/5.9.4/wpm-edit.php

    r2391639 r3277427  
    6666
    6767<?php
    68     $item_list = wpm_item_list ($menuid, array(), 0);
     68    $item_list = wpm_item_list ($menuid, array(), 0);
     69    $wpm_type_list = array (
     70        'Home'          => 'Home'           . __(': the main page of your blog', 'menubar'),
     71        'FrontPage'     => 'FrontPage'      . __(': the front page of your site', 'menubar'),
     72        'Heading'       => 'Heading'        . __(': a non clickable item', 'menubar'),
     73        'Tag'           => 'Tag'            . __(': a tag archive', 'menubar'),
     74        'TagList'       => 'TagList'        . __(': the tag archive list', 'menubar'),
     75        'Category'      => 'Category'       . __(': a category archive', 'menubar'),
     76        'CategoryTree'  => 'CategoryTree'   . __(': a category archive, with subcategories', 'menubar'),
     77        'Page'          => 'Page'           . __(': a static page', 'menubar'),