csaeum Posted February 17, 2019 Share Posted February 17, 2019 how can I assign a classe to the a TAG in the menu? have just reviewed docu and Github but find nothing Link to comment Share on other sites More sharing options...
kongondo Posted February 17, 2019 Author Share Posted February 17, 2019 17 hours ago, MateThemes said: How can I close the <div class="uk-navbar-dropdown">? Everything I've tried seems not to work! Try this one: Please note that the \t and \n need cleaning up. function buildMenuFromObject($parent = 0, $menu, $first = 0) { if(!is_object($menu)) return; $out = ''; $has_child = false; foreach ($menu as $m) { $newtab = $m->newtab ? " target='_blank'" : ''; // if this menu item is a parent; create the sub-items/child-menu-items if ($m->parentID == $parent) {// if this menu item is a parent; create the inner-items/child-menu-items // if this is the first child if ($has_child === false) { $has_child = true;// This is a parent if ($first == 0){ $out .= "\n<ul class='uk-navbar-nav'>"; $first = 1; } else { $out .= "\n\t<div class='uk-navbar-dropdown'>" . "\n\t\t<ul class='uk-nav uk-navbar-dropdown-nav'>"; } } // active/current menu item $class = $m->isCurrent ? ' class="uk-active"' : ''; // a menu item $out .= "\n\t<li$class><a href='{$m->url}{$newtab}'>{$m->title}</a>"; // call function again to generate nested list for sub-menu items belonging to this menu item. $out .= buildMenuFromObject($m->id, $menu, $first); if ($m->isParent) $out .= "\n\t</div>\n";// close div.uk-navbar-dropdown $out .= "</li>"; }// end if parent }// end foreach if ($has_child === true) $out .= "\n</ul>"; return $out; } // example usage $mb = $modules->get('MarkupMenuBuilder'); $menuItemsAsObject = $mb->getMenuItems(1041, 2); $menu = "\n<div class='uk-navbar-center uk-visible@m'>"; $menu .= buildMenuFromObject(0, $menuItemsAsObject); $menu .= "</div>\n"; echo $menu; 1 Link to comment Share on other sites More sharing options...
MateThemes Posted February 18, 2019 Share Posted February 18, 2019 7 hours ago, kongondo said: Try this one: Please note that the \t and \n need cleaning up. function buildMenuFromObject($parent = 0, $menu, $first = 0) { if(!is_object($menu)) return; $out = ''; $has_child = false; foreach ($menu as $m) { $newtab = $m->newtab ? " target='_blank'" : ''; // if this menu item is a parent; create the sub-items/child-menu-items if ($m->parentID == $parent) {// if this menu item is a parent; create the inner-items/child-menu-items // if this is the first child if ($has_child === false) { $has_child = true;// This is a parent if ($first == 0){ $out .= "\n<ul class='uk-navbar-nav'>"; $first = 1; } else { $out .= "\n\t<div class='uk-navbar-dropdown'>" . "\n\t\t<ul class='uk-nav uk-navbar-dropdown-nav'>"; } } // active/current menu item $class = $m->isCurrent ? ' class="uk-active"' : ''; // a menu item $out .= "\n\t<li$class><a href='{$m->url}{$newtab}'>{$m->title}</a>"; // call function again to generate nested list for sub-menu items belonging to this menu item. $out .= buildMenuFromObject($m->id, $menu, $first); if ($m->isParent) $out .= "\n\t</div>\n";// close div.uk-navbar-dropdown $out .= "</li>"; }// end if parent }// end foreach if ($has_child === true) $out .= "\n</ul>"; return $out; } // example usage $mb = $modules->get('MarkupMenuBuilder'); $menuItemsAsObject = $mb->getMenuItems(1041, 2); $menu = "\n<div class='uk-navbar-center uk-visible@m'>"; $menu .= buildMenuFromObject(0, $menuItemsAsObject); $menu .= "</div>\n"; echo $menu; Thank you very much!!! This works great!!! Link to comment Share on other sites More sharing options...
kongondo Posted February 18, 2019 Author Share Posted February 18, 2019 17 hours ago, csaeum said: how can I assign a classe to the a TAG in the menu? You cannot unless a. You use <a> as the list_type OR b. You use getMenuItems() with custom menu generator. See most recent example above and this post for more information about complex menus. Link to comment Share on other sites More sharing options...
csaeum Posted February 19, 2019 Share Posted February 19, 2019 ok, thanks, I'll take a look;) My PHP knowledge should be enough, I hope: D Link to comment Share on other sites More sharing options...
Ivan Gretsky Posted February 22, 2019 Share Posted February 22, 2019 Good day @kongondo and everyone here! I am trying to get my menus with MenuBuilder to work, but having some strange issue. This is my code: <?php namespace ProcessWire; $menuBuilder = $modules->get('MarkupMenuBuilder'); $mainMenuLeft = $menuBuilder->getMenuItems('main-menu-left'); bd($mainMenuLeft, '$mainMenuLeft'); And this is a screen of MenuBuilder admin page: The problem is I get 0 items. And only if I add the homepage I get 1 (and this is the homepage). Either I am doing something wrong or something got broken) Please help me! Link to comment Share on other sites More sharing options...
kongondo Posted February 22, 2019 Author Share Posted February 22, 2019 1 hour ago, Ivan Gretsky said: Either I am doing something wrong or something got broken) Please help me! If the pages are not viewable they won't appear in the menu/won't be returned as menu items. Make sure the templates they use have a template file and there aren't any other restrictions. 3 Link to comment Share on other sites More sharing options...
Ivan Gretsky Posted February 22, 2019 Share Posted February 22, 2019 That was it! Thanks, @kongondo! Link to comment Share on other sites More sharing options...
kongondo Posted February 22, 2019 Author Share Posted February 22, 2019 Update: Menu Builder Version 0.2.5. Just a quick maintenance update. Changelog Fixed a minor bug where we had to check if a variable was an array first before "counting" it. Removed a leftover debugging statement from the code (an echo of all things! Not even a bd()!!) ?. 2 Link to comment Share on other sites More sharing options...
mel47 Posted March 31, 2019 Share Posted March 31, 2019 Hi, I'm wondering how unpublished (or hidden) pages could "disappear" from the menu, without having to remove it from the menu? The context : I have some pages in menu. My user need to unpublished a page not necessary for a temporary period. But it's not automatically removed from the menu. I now deleted from the menu, but I'm quite sure than she will want to re-published it, she will call me because it will not be present in the menu. (I gave her permissions on menu but if I could avoided to touch too much those settings, I will be happy... Anyway, in theory she shouldn't have to modify anything on that module on regular basis). Thanks Mel Link to comment Share on other sites More sharing options...
kongondo Posted April 1, 2019 Author Share Posted April 1, 2019 48 minutes ago, mel47 said: I'm wondering how unpublished (or hidden) pages could "disappear" from the menu, without having to remove it from the menu? Hi, Have a look at your menus settings, specifically the 'Use enable/disable menu items feature'. This requires the permission 'menu-builder-disable-items'. When enabled, you will see under each menu item's settings panel, a checkbox 'Disabled'. Tick that for the menu items you wish to disable and voila; no need to delete them. However, if you do not wish the user to be going to these settings, enabling and disabling menu items, you can instead use getMenuItems() and filter out unpublished and hidden pages. If you can open an issue in the project repo, I can consider to add these as options i.e. 'skip_unpublished' and 'skip_hidden'. I can't remember of the top of my head how ProcessWire page->viewable() relates to hidden and unpublished pages. We already check for viewable() in menu builder but I'd have to investigate this further. 3 Link to comment Share on other sites More sharing options...
eutervogel Posted April 12, 2019 Share Posted April 12, 2019 Hi, I have some issues since the last update of the module. If a menu item has children it doesn't get the class provided in the options array (in my case 'menu-item-has-children'). The a tag is not even in a li?!?! Here is my code: $options = array( 'wrapper_list_type' => 'ul', 'list_type' => 'li', 'menu_css_id' => '', 'menu_css_class' => 'menu', 'submenu_css_class' => 'sub-menu', 'has_children_class' => 'menu-item-has-children', 'first_class'=>'', 'last_class' => '', 'current_class' => 'current-menu-item', 'default_title' => 1 , 'include_children' => 4, 'm_max_level' => 2, 'current_class_level' => 1, 'default_class' => 'menu-item', ); $menu = $modules->get('MarkupMenuBuilder'); echo $menu->render('hauptmenu', $options); And this is what comes out (look at Fotografie for example? <ul class="menu"> <li class="menu-item"> <a href="/" class="pm_text_menu_item">Start</a> </li> <a href="/fotografie/" class="pm_text_menu_item">Fotografie</a> <ul class="sub-menu"> <a href="/fotografie/landschaften/" class="pm_text_menu_item">Landschaften</a> <ul class="sub-menu"> <li class="menu-item"> <a href="/fotografie/landschaften/wald/" class="pm_text_menu_item">Wald</a> </li> <li class="menu-item"> <a href="/fotografie/landschaften/strand-kuste/" class="pm_text_menu_item">Strand & Küste</a> </li> </ul> <a href="/fotografie/tiere/" class="pm_text_menu_item">Tiere</a> <ul class="sub-menu"> <li class="menu-item"> <a href="/fotografie/tiere/amphibien-reptilien/" class="pm_text_menu_item">Amphibien & Reptilien</a> </li> <li class="menu-item"> <a href="/fotografie/tiere/arthropoden/" class="pm_text_menu_item">Arthropoden</a> </li> <li class="menu-item"> <a href="/fotografie/tiere/saugetiere/" class="pm_text_menu_item">Säugetiere</a> </li> <li class="menu-item"> <a href="/fotografie/tiere/vogel/" class="pm_text_menu_item">Vögel</a> </li> </ul> <li class="menu-item"> <a href="/fotografie/stimmungen/" class="pm_text_menu_item">Stimmungen</a> </li> </ul> <li class="menu-item"> <a href="/video/" class="pm_text_menu_item">Video</a> </li> <li class="menu-item current-menu-item"> <a href="/daniel-holte/" class="pm_text_menu_item">Daniel Holte</a> </li> <li class="menu-item"> <a href="/kontakt/" class="pm_text_menu_item">Kontakt</a> </li> <li class="menu-item"> <a href="/impressum/" class="pm_text_menu_item">Impressum</a> </li> </ul> So as you can see the li tags for menu items with children are completly missing. I have no idea why and as I said above, I changed nothing except the upadte of the module. Thanks in advance Link to comment Share on other sites More sharing options...
wbmnfktr Posted April 12, 2019 Share Posted April 12, 2019 1. Try rendering the menu without $options. $menu = $modules->get('MarkupMenuBuilder'); echo $menu->render('hauptmenu'); If the markup is fine then something within your $options doesn't work or 2. Look into your menu settings within the builder. There could be some settings too. I just tried it with version 0.2.5 (which seems to be the latest version) and my menu markup is fine. Link to comment Share on other sites More sharing options...
neonwired Posted April 16, 2019 Share Posted April 16, 2019 Found a bit of a bug. If you add javascript:void(0) in the link field in a custom link it deletes the item. Link to comment Share on other sites More sharing options...
kongondo Posted April 16, 2019 Author Share Posted April 16, 2019 1 hour ago, neonwired said: Found a bit of a bug. If you add javascript:void(0) in the link field in a custom link it deletes the item. I wouldn't call it a bug. That's the sanitizer at work. For custom things like that, I suggest you use getMenuItems() method to create your menus. See the examples in that link. Link to comment Share on other sites More sharing options...
dragan Posted April 16, 2019 Share Posted April 16, 2019 3 hours ago, neonwired said: Found a bit of a bug. If you add javascript:void(0) in the link field in a custom link it deletes the item. Wow. It's 2019 and people are still using this? @neonwired please read this: https://stackoverflow.com/a/1293130 1 Link to comment Share on other sites More sharing options...
neonwired Posted April 30, 2019 Share Posted April 30, 2019 On 4/16/2019 at 11:20 AM, kongondo said: I wouldn't call it a bug. That's the sanitizer at work. For custom things like that, I suggest you use getMenuItems() method to create your menus. See the examples in that link. I'm aware of that. However I doubt deleting the entire entry as a result is intended. Link to comment Share on other sites More sharing options...
neonwired Posted April 30, 2019 Share Posted April 30, 2019 On 4/16/2019 at 1:08 PM, dragan said: Wow. It's 2019 and people are still using this? @neonwired please read this: https://stackoverflow.com/a/1293130 I disagree, it's perfectly legitimate to use it. I don't do code snobbery. Link to comment Share on other sites More sharing options...
Beluga Posted May 2, 2019 Share Posted May 2, 2019 On 4/30/2019 at 4:31 PM, neonwired said: I disagree, it's perfectly legitimate to use it. I don't do code snobbery. "Anti-snobbery" resulted in my boss recently sending me an email with a link to javascript:void(0); 1 Link to comment Share on other sites More sharing options...
uiui Posted June 13, 2019 Share Posted June 13, 2019 Has anyone ever had the issue that changes to a menu won't save anymore? After adding page number 89 moving items isn't possible anymore as the change won't be saved. This is the case independent of the last page I add or where I move that page. Link to comment Share on other sites More sharing options...
kongondo Posted June 21, 2019 Author Share Posted June 21, 2019 On 6/13/2019 at 9:31 PM, uiui said: After adding page number 89 moving items isn't possible anymore as the change won't be saved. Hi @uiui. I am afraid I don't follow. Could you please explain what page number 89 is? Also, your ProcessWire version please. Link to comment Share on other sites More sharing options...
uiui Posted June 21, 2019 Share Posted June 21, 2019 Just now, kongondo said: Hi @uiui. I am afraid I don't follow. Could you please explain what page number 89 is? Also, your ProcessWire version please. Hi @kongondo, I'm working with version 3.0.132. The menu that produces this error contains 88 pages and a couple of custom links. As soon as I add a page that is counted as number 89, the menu won't save anymore. The last page added doesn't seem to be the origin of the problem as I tried it with a number of different pages. Link to comment Share on other sites More sharing options...
kongondo Posted June 21, 2019 Author Share Posted June 21, 2019 1 hour ago, uiui said: The menu that produces this error contains 88 pages and a couple of custom links. As soon as I add a page that is counted as number 89, the menu won't save anymore. The last page added doesn't seem to be the origin of the problem as I tried it with a number of different pages. I've just tested and it works fine. I have created a menu with 93 items. I started with 87 then added more. How are you adding the menu items? Asm select / Auto complete / Page List / Selector? Are the menus nested? Link to comment Share on other sites More sharing options...
uiui Posted June 21, 2019 Share Posted June 21, 2019 7 hours ago, kongondo said: I've just tested and it works fine. I have created a menu with 93 items. I started with 87 then added more. How are you adding the menu items? Asm select / Auto complete / Page List / Selector? Are the menus nested? 1. ASM 2. Yes, two levels. Link to comment Share on other sites More sharing options...
kongondo Posted June 21, 2019 Author Share Posted June 21, 2019 1 hour ago, uiui said: 1. ASM 2. Yes, two levels. I have tested again, this time adding items one at a time using ASM select, creating a two-level deep menu with 93 items. Some of the items were repeated though. I also added a number of custom menu items. Are you able to show me screenshot, or, preferably, a video of the offending menu? The video would need to show the bit about the 89th item please. Ideally, have Tracy Debugger on to catch any errors as well. Is this a local or remote site? Single or Multilingual? Third-party modules in use? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now