Changeset 3277427
- Timestamp:
- 04/20/2025 04:49:02 AM (8 months ago)
- Location:
- menubar
- Files:
-
- 6 edited
- 4 copied
-
tags/5.9.4 (copied) (copied from menubar/trunk)
-
tags/5.9.4/readme.txt (copied) (copied from menubar/trunk/readme.txt) (2 diffs)
-
tags/5.9.4/wpm-admin.php (copied) (copied from menubar/trunk/wpm-admin.php)
-
tags/5.9.4/wpm-db.php (modified) (3 diffs)
-
tags/5.9.4/wpm-edit.php (modified) (1 diff)
-
tags/5.9.4/wpm-main.php (copied) (copied from menubar/trunk/wpm-main.php) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpm-db.php (modified) (3 diffs)
-
trunk/wpm-edit.php (modified) (1 diff)
-
trunk/wpm-main.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
menubar/tags/5.9.4/readme.txt
r3189889 r3277427 4 4 License: GPLv2 or later 5 5 Requires at least: 6.1 6 Tested up to: 6. 77 Stable tag: 5.9. 36 Tested up to: 6.8 7 Stable tag: 5.9.4 8 8 9 9 Single and multi-level menus for your WordPress site, styled with customizable menu templates. … … 35 35 == Changelog == 36 36 37 = 5.9.4 = 38 * Fixed a few notices related to *load_plugin_textdomain* 37 39 = 5.9.3 = 38 40 * Expanded the documentation section -
menubar/tags/5.9.4/wpm-db.php
r1257428 r3277427 1 1 <?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 );19 2 20 3 $wpm_type_fields = array ( … … 35 18 ); 36 19 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 50 20 $wpm_field_type = array ( 51 21 'name' => 'string', … … 246 216 function wpm_display_fields ($item) 247 217 { 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 ); 249 232 250 233 $out = ''; -
menubar/tags/5.9.4/wpm-edit.php
r2391639 r3277427 66 66 67 67 <?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'),