? Language Change Documentation Required Maintainers Checked PR-4.3-dev ? Success

User tests: Successful: Unsuccessful:

avatar pe7er
pe7er
27 Apr 2020

Pull Request to add a Component filter to the "Menus: Items" overview.

It's PR #24665 re-done for the current Joomla 4.2-dev.

Summary of Changes

This PR adds a Component filter to the menu items overview so that you can filter on specific Components.

Before PR

menu-before-pr2

Testing Instructions

  • Install the PR.
  • Open the Menus: All Menu Items page (Menus > All Menu Items)
  • Create a menu item of type Contact - Single Contact
  • Click on "Search Tools",
  • Select a component (e.g. Contacts)

Expected result

The list of menu items should be filtered to only show menu items to views of that selected Component.

After PR

A new Filter field should be available:
menu-after-pr

The new filter fields enables you to filter on Menu Items of type = Articles (com_content)
menu-after-pr-articles

The new filter fields enables you to filter on Menu Items of type = Contacts (com_contact)
menu-after-pr-contacts

avatar pe7er pe7er - open - 27 Apr 2020
avatar pe7er pe7er - change - 27 Apr 2020
Status New Pending
avatar joomla-cms-bot joomla-cms-bot - change - 27 Apr 2020
Category Administration com_menus Language & Strings
avatar pe7er pe7er - change - 27 Apr 2020
Labels Added: ? ?
avatar ChristineWk
ChristineWk - comment - 29 Apr 2020

I have tested this item successfully on aaf4ce3


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar ChristineWk ChristineWk - test_item - 29 Apr 2020 - Tested successfully
avatar jwaisner
jwaisner - comment - 30 Apr 2020

I have tested this item successfully on aaf4ce3


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar jwaisner jwaisner - test_item - 30 Apr 2020 - Tested successfully
avatar jwaisner jwaisner - change - 30 Apr 2020
Status Pending Ready to Commit
avatar jwaisner
jwaisner - comment - 30 Apr 2020

RTC


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar alikon
alikon - comment - 30 Apr 2020

@pe7er look at https://github.com/pe7er/joomla-cms/pull/1it use the prepared statement for the new where clause

avatar pe7er pe7er - change - 30 Apr 2020
Labels Added: ?
avatar wilsonge
wilsonge - comment - 2 May 2020

Wouldn't it be more obvious to filter by menu item type than component?

avatar sere-b
sere-b - comment - 2 May 2020

I have tested this item successfully on d951e96


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar sere-b sere-b - test_item - 2 May 2020 - Tested successfully
avatar richard67 richard67 - change - 2 May 2020
Status Ready to Commit Pending
avatar richard67
richard67 - comment - 2 May 2020

Back to pending after recent change for prepared statements. One more tester needed.


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar ChristineWk
ChristineWk - comment - 2 May 2020

I have tested this item successfully on d951e96


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar ChristineWk
ChristineWk - comment - 2 May 2020

I have tested this item successfully on d951e96


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar ChristineWk ChristineWk - test_item - 2 May 2020 - Tested successfully
avatar richard67 richard67 - change - 2 May 2020
Status Pending Ready to Commit
avatar richard67
richard67 - comment - 2 May 2020

Back to RTC after 2 good tests. But could you check @wilsonge 's comment "Wouldn't it be more obvious to filter by menu item type than component?"? Seems to be a valid question to me.


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar richard67 richard67 - change - 9 May 2020
Status Ready to Commit Information Required
avatar richard67
richard67 - comment - 9 May 2020

@pe7er Could you check George's comment above? I think it is a valid question. When fitering by the type of menu item we may achieve nearly the same result, because the item types are connected to the component, and it might also be easier.


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar pe7er pe7er - change - 12 May 2020
Labels Added: Information Required
Removed: ?
avatar pe7er
pe7er - comment - 12 May 2020

@richard67 @wilsonge I have changed my PR:

  • added a new Field type MenuItemByComponent to filter by menu item type (instead of component)

Before the change the dropdown would be:
joomla-menu-filter-before

After the change the dropdown looks like:
joomla-menu-filter-3

Note: I've added a ->where($db->quoteName('menu.client_id') . ' = 0') to the query.
Otherwise it would also show menu items from the admin menu in the dropdown:
joomla-menu-filter

avatar richard67
richard67 - comment - 12 May 2020

@pe7er Should the label then still be "- Select Component -"?

avatar pe7er
pe7er - comment - 12 May 2020

@richard67 yes, I think so. Or do you have a suggestion for something better?

avatar richard67
richard67 - comment - 12 May 2020

@pe7er Well, when you create a new menu item, it is called "Menu Item Type":

menu-item-type

So maybe we should use the same for the new filter? "- Select Menu Item Type -" ... ok, maybe that's a bit long, but would be consistent.

avatar brianteeman
brianteeman - comment - 12 May 2020

That's because it contains the views for each component. If I understand correctly this pr just lists the components not all their views

avatar richard67
richard67 - comment - 12 May 2020

I see.

avatar richard67
richard67 - comment - 12 May 2020

@pe7er Other question. In your 2nd screenshot, banners are missing. Is that expected?

avatar pe7er
pe7er - comment - 12 May 2020

@brianteeman Yes, that's right. I wanted to filter on View and analyzed the #__menu table to see if it's easy to filter on views: it is not. The only field that has the view, has it in a larger string of text.

@richard67 good point! Yes, the filter only shows the components for which a menu item has been created. The banner component does not have a front-end view (only modules that display the banners).

In the 1st screenshot, the banners is present because I filtered on components table. Now only the components of created front-end menu items are in the drop down list.

avatar richard67
richard67 - comment - 12 May 2020

The banner component does not have a front-end view (only modules that display the banners).

Ah, sure, I should have known that.

avatar pe7er
pe7er - comment - 12 May 2020

The banner component does not have a front-end view (only modules that display the banners).
Ah, sure, I should have known that.

I would love to have a front-end view for the banner component though. I've had use cases in the past: a page that list all the banners of sponsors. Because of the the missing banner view I've solved that with adding an empty article + loaded the banner module. :-)

avatar pe7er
pe7er - comment - 12 May 2020

I've fixed the issues in MenuItemByComponentField that @SharkyKZ mentioned.

avatar pe7er
pe7er - comment - 13 May 2020

Thank you both for your improvements @Quy + @SharkyKZ

avatar pe7er
pe7er - comment - 20 May 2020

@Quy @SharkyKZ @richard67 Do I need two new tests before getting it to RTC?

avatar richard67
richard67 - comment - 20 May 2020

@pe7er I would say yes, because changes after the previous tests were not cosmetic only. I'll see if I can find time for testing tomorrow.

avatar richard67 richard67 - test_item - 21 May 2020 - Tested successfully
avatar richard67
richard67 - comment - 21 May 2020

I have tested this item successfully on fb902a4

The behavior of the new filter is a bit different to other filters, but I think that's intended.

Other filters always show all possible options, regardless if there are menu items using it or not, while the new filter added with this PR only shows those components in the selection forn which there is a menu item, i.e. e.g. if you don't have any menu item for com_contact, the "Contacts" is not available in the dropdown list.

@pe7er Let me know if that's not intended, then I can change back my test result.


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar brianteeman
brianteeman - comment - 21 May 2020

Other filters always show all possible options, regardless if there are menu items using it or not, while the new filter added with this PR only shows those components in the selection forn which there is a menu item, i.e. e.g. if you don't have any menu item for com_contact, the "Contacts" is not available in the dropdown list.

I hope its the intended behaviour. Look at the module filter in com_modules

avatar richard67
richard67 - comment - 21 May 2020

I hope its the intended behaviour. Look at the module filter in com_modules

Seems so. Module positions are only shown in the dropdown if used. But languages are always shown all possible. So it seems we have that inconsistentcy everywhere, and maybe those other filters need to be fixed?

Anyway, this PR here is fine for me.

avatar brianteeman brianteeman - test_item - 23 May 2020 - Tested unsuccessfully
avatar brianteeman
brianteeman - comment - 23 May 2020

I have tested this item ? unsuccessfully on fb902a4

Almost but not quite ;)

The list of components that you can select from does not take into account the menu in use.

Example with two or more menus create a new menu item for the wrapper component in just one of the menus

Now check the component filter in that menu and you see the wrapper component - all good

Now check the component filter in the other menu. I expect not to see the wrapper component being listed but it is ;(


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar pe7er pe7er - change - 28 May 2020
Labels Removed: Information Required
avatar pe7er
pe7er - comment - 28 May 2020

Thanks @brianteeman
I've added the currentMenuType context to the component filter.
Now the - Select Component - filter only shows the component views that are used in that specific menu.

joomla-menu

avatar ChristineWk ChristineWk - test_item - 28 May 2020 - Tested successfully
avatar ChristineWk
ChristineWk - comment - 28 May 2020

I have tested this item successfully on 585c185


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar pe7er
pe7er - comment - 2 Jun 2020

Thanks for rewriting the code using a prepared statement @Quy !

avatar pe7er
pe7er - comment - 18 Jun 2020

Could two of you please re-test this PR again? @sere-b @brianteeman @ChristineWk @richard67

avatar ChristineWk ChristineWk - test_item - 18 Jun 2020 - Tested successfully
avatar ChristineWk
ChristineWk - comment - 18 Jun 2020

I have tested this item successfully on 6e60bd9


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar pe7er
pe7er - comment - 18 Jun 2020

Thanks @ChristineWk !

avatar richard67
richard67 - comment - 18 Jun 2020

@pe7er Now the filter offers only those components which are actually used in a menu. But now there is something not nice: When filtering for a component and having selected a menu which contains a menu item for this component, I see a result. When then selecting another menu which doesn't contain that component, I see "No matching results", which is correct. Up to here all fine.

But I don't see that there is a filter applied, because the dropdown value for the component has been cleared, so there is no visual hint showing there is still a filter applied and that I have to use the "Clear" button.

Example with testing sample data: Select the "Fruit Shop" menu, then filter by the "Content" component, then change menu selection to "Australian Parks". One could think that the "Australian Parks" menu is empty when proceeding in this order of processing.

avatar richard67
richard67 - comment - 18 Jun 2020

@pe7er Sorry, have forgotten to add the question to the end of my previous comment: Is that ok, or would it be better and possible to clear the filter automatically in such case?

avatar richard67
richard67 - comment - 18 Jun 2020

Maybe it would be the best to clean all filter selections when the selected menu changes?

avatar pe7er
pe7er - comment - 19 Jun 2020

Thank you for your test @richard67 & for spotting that annoying bug.

Yes, I agree that filters that depend on a selected menu, should be cleaned after the selected menu changes.

avatar richard67
richard67 - comment - 19 Jun 2020

Yes, I agree that filters that depend on a selected menu, should be cleaned after the selected menu changes.

@pe7er Should that be done with this PR here because this PR makes that annoying thing more visible, or do you wanna make a new separate PR for that?

avatar pe7er
pe7er - comment - 19 Jun 2020

@richard67 I think that I should do it in this PR for the "component view" filter.

Did you notice this annoying behavior after switching selected menu with other filters as well?

avatar richard67
richard67 - comment - 19 Jun 2020

Did you notice this annoying behavior after switching selected menu with other filters as well?

No, but that's just because the others don't depend on the selected menu, and so if a filter option is selected and then you change the menu seletion, the selection in the filter is not removed.

In case of the new filter added by this PR, you lose the selection when changing to a menu where the selected value is not available.

If we now clear the filter after a change of the menu selection - which from an UX point makes sense because the menu selection is at the very top, superior to all others, then we can in future PRs pimp the other filters, too, so they only show relevant values for the selected menu (or all) like the new filter does.

avatar pe7er
pe7er - comment - 19 Jun 2020

IMHO we should only clear the filters that are dependent on the menu.

From experience I know that I sometimes use some filters (eg trashed items), then decide to look in other menus. Having to re-select those filters again would be annoying. So I would add the clean filter option only for filters that are dependent on the selected menu.

avatar richard67
richard67 - comment - 19 Jun 2020

So I would add the clean filter option only for filters that are dependent on the selected menu.

Sure. Is there any other beside the new filter? I don't remember right now. If we later see that other filters which currently are not dependent on the selected menu should be changed to that, we can do the clear filter for those then in the future PR which changes these filters.

avatar pe7er
pe7er - comment - 19 Jun 2020

I've tried some things to reset the filter when the menu changes, but so far unsuccessfully...

In administrator/components/com_menus/src/Model/ItemsModel.php the method
protected function populateState($ordering = 'a.lft', $direction = 'asc')
I've changed line 166 to

// If menutype changed reset pagination and reset componentName filter
if ($menuType != $currentMenuType)
{
	$app->input->set('limitstart', 0);
	$this->setState('filter.componentName', null);
}
else
{
	$componentName = $this->getUserStateFromRequest($this->context . '.filter.componentName', 'componentName');
	$this->setState('filter.componentName', $componentName);
}

but that does not work. It keeps receiving the form input with the previous componentName filter.

Can someone please give me a hand with this?

avatar opn365 opn365 - test_item - 17 Oct 2020 - Tested successfully
avatar opn365
opn365 - comment - 17 Oct 2020

I have tested this item successfully on 6e60bd9


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar richard67
richard67 - comment - 17 Oct 2020

I've tried some things to reset the filter when the menu changes, but so far unsuccessfully...

In administrator/components/com_menus/src/Model/ItemsModel.php the method
protected function populateState($ordering = 'a.lft', $direction = 'asc')
I've changed line 166 to

// If menutype changed reset pagination and reset componentName filter
if ($menuType != $currentMenuType)
{
	$app->input->set('limitstart', 0);
	$this->setState('filter.componentName', null);
}
else
{
	$componentName = $this->getUserStateFromRequest($this->context . '.filter.componentName', 'componentName');
	$this->setState('filter.componentName', $componentName);
}

but that does not work. It keeps receiving the form input with the previous componentName filter.

Can someone please give me a hand with this?

@SharkyKZ Could you have a look on that? Do you have an idea? Thanks in avdance.

avatar rdeutz
rdeutz - comment - 15 Mar 2021

I am moving this to 4.1, we are in beta and this is a new feature. Thank you all who have been working on this and bringing it to the state it is now. But if we want to get 4.0 out of the door we need to make a cut.

avatar rdeutz rdeutz - change - 15 Mar 2021
Title
Menu Items overview - Filter on Component - v2
[4.1] Menu Items overview - Filter on Component - v2
avatar rdeutz rdeutz - edited - 15 Mar 2021
avatar pe7er
pe7er - comment - 15 Mar 2021

No prob, I understand. Thanks @rdeutz !

avatar pe7er pe7er - change - 23 Aug 2021
Labels Added: Language Change ? ?
Removed: ? ?
avatar pe7er
pe7er - comment - 23 Aug 2021

@PhilETaylor Thanks for your improvements!

avatar fancyFranci
fancyFranci - comment - 13 Feb 2022

Hi @pe7er, would you like to make this PR ready for 4.2? Then we can finally merge this nice feature :)

avatar ceford
ceford - comment - 9 Mar 2022

I have tested this item successfully on 00b60d9

Tested in 4.2-dev - also checked only components present in the selected menu are listed in the select drop-down.


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar ceford ceford - test_item - 9 Mar 2022 - Tested successfully
avatar BertaOctech
BertaOctech - comment - 18 Mar 2022

I have tested this item successfully on 00b60d9

It worked as described.


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar BertaOctech BertaOctech - test_item - 18 Mar 2022 - Tested successfully
avatar alikon
alikon - comment - 18 Mar 2022

@pe7er for fix the update requested pe7er#2

avatar richard67
richard67 - comment - 18 Mar 2022

@pe7er for fix the update requested pe7er#2

I think it will not need new human tests when these changes based on Quy‘s review suggestions will be implemented.

avatar alikon
alikon - comment - 18 Mar 2022

this pr is in it's second edition is still pending from ie 2020 2 years ago
can we speed up the process a little bit ? merge this as is for now ?

avatar richard67
richard67 - comment - 18 Mar 2022

It needs to be rebased to 4.2-dev, and it needs to apply Quy‘s review suggestions. If @pe7er is ok with it I can do both.

avatar brianteeman
brianteeman - comment - 18 Mar 2022

Ideally it also needs to be applied to admin menu items

avatar pe7er pe7er - change - 19 Mar 2022
Labels Added: ? ?
Removed: ? ?
avatar pe7er
pe7er - comment - 19 Mar 2022

@richard67 Thanks!
I updated my PR with the 4.1-dev branch, but I do not know how to rebased to 4.2-dev.
If you would take care of the rebase to 4.2-dev, please do.
Thanks!

avatar brianteeman
brianteeman - comment - 19 Mar 2022

It's really easy to rebase

rebase

avatar richard67
richard67 - comment - 19 Mar 2022

I've just tried to rebase, but that was not good, it has shown too many changes, so I have reverted that. I think we have to wait with that until the next upmerge from 4.10-dev to 4.2-dev has taken place.

avatar pe7er
pe7er - comment - 19 Mar 2022

@brianteeman Thanks for showing me how to rebase.
@richard67 Thanks!
If there are any issues with my PR during the "upmerge" then I can redo my PR as a new PR to the 4.2-dev branch.

avatar richard67
richard67 - comment - 20 Mar 2022

@brianteeman @richard67 Thanks! If there are any issues with my PR during the "upmerge" then I can redo my PR as a new PR to the 4.2-dev branch.

@pe7er I don't think there will be issues. The problem right now is just that the 4.1-dev branch and also your PR are in advance to the 4.2-dev branch, so the rebase here currently shows all these other changes, too. We just have to wait for the next regular update of the 4.2-dev branch to the 4.1-dev branch (that's the "Upmerge"), and after that the rebase will show the right result.

avatar richard67 richard67 - change - 20 Mar 2022
Labels Removed: ?
avatar richard67 richard67 - change - 20 Mar 2022
Title
[4.1] Menu Items overview - Filter on Component - v2
[4.2] Menu Items overview - Filter on Component - v2
avatar richard67 richard67 - edited - 20 Mar 2022
avatar richard67 richard67 - change - 20 Mar 2022
Labels Added: ?
avatar richard67 richard67 - change - 20 Mar 2022
Status Information Required Pending
Build 4.0-dev 4.2-dev
avatar richard67
richard67 - comment - 20 Mar 2022

Back to pending


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar richard67 richard67 - alter_testresult - 20 Mar 2022 - ceford: Tested successfully
avatar richard67 richard67 - alter_testresult - 20 Mar 2022 - BertaOctech: Tested successfully
avatar richard67
richard67 - comment - 20 Mar 2022

I've added back the previous test results in the issue tracker since the change which has invalidated it was just a backslash for the global namespace and short array syntax and after that just a clean branch update and finally a clean rebase.

I'll do a quick test soon and then will set RTC if ok.

avatar richard67 richard67 - change - 20 Mar 2022
The description was changed
avatar richard67 richard67 - edited - 20 Mar 2022
avatar richard67 richard67 - change - 20 Mar 2022
Labels Removed: ?
avatar richard67 richard67 - alter_testresult - 20 Mar 2022 - BertaOctech: Tested successfully
avatar richard67 richard67 - alter_testresult - 20 Mar 2022 - ceford: Tested successfully
avatar richard67
richard67 - comment - 20 Mar 2022

I have tested this item successfully on 11bca7e


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar richard67 richard67 - test_item - 20 Mar 2022 - Tested successfully
avatar richard67 richard67 - change - 20 Mar 2022
Status Pending Ready to Commit
avatar richard67
richard67 - comment - 20 Mar 2022

RTC


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar pe7er
pe7er - comment - 21 Mar 2022

Thank you all for testing, comments and improvements!

avatar roland-d roland-d - change - 24 Mar 2022
Labels Added: ?
avatar roland-d
roland-d - comment - 24 Mar 2022

@pe7er Thank you for this addition but I see some unwanted behavior when testing.

Removed extensions

When I first opened the filters I see this:
image

Notice the empty dropdown. This is what I see opening the dropdown:
image

The reason this happens is because I have a menu entry for an extension that has been removed after I created the menu item. You get an empty entry because your query links to the extensions table that no longer has the name in it. Perhaps we can have a fallback to the option value in the menu link?

Missing translation

In the above screenshot you see HikaShop, however when I filter on Articles the entry HikaShop becomes COM_HIKASHOP.

image

Can you have a look at these 2 issues please? Other than that this looks good. Thank you.

avatar richard67
richard67 - comment - 24 Mar 2022

The solution for @roland-d 's issue with a menu item for an uninstalled extension can be solved by changing the JOIN from an outer (left) JOIN to an INNER JOIN here: https://github.com/joomla/joomla-cms/pull/28832/files#diff-ddcad41745a23f26d77ffc97f8ac6382c68172412523042358d8c4a5aa93b3c2R52

avatar roland-d
roland-d - comment - 24 Mar 2022

@richard67 In that case you get rid of the empty entry but you cannot filter the menu items then on that particular extension.

avatar richard67
richard67 - comment - 24 Mar 2022

@richard67 In that case you get rid of the empty entry but you cannot filter the menu items then on that particular extension.

@roland-d Then add a ->where($db->quoteName('extensions.extension_id') . ' IS NOT NULL') to the query. Does that help?

avatar Quy Quy - change - 26 Mar 2022
Status Ready to Commit Pending
avatar pe7er pe7er - change - 26 Apr 2022
Labels Removed: ?
avatar pe7er
pe7er - comment - 26 Apr 2022

I've added @richard67 's database improvement to fix the issue with uninstalled components reported by @roland-d
Thank you both!

avatar pjdevries
pjdevries - comment - 2 May 2022

Before applying the PR, the Filter Options has no - Select Component - option, allowing filtration of menu items on component. After applying the PR and following @pe7er's instructions, I was able to filter on various component types, including com_contact, showing (just) the Single Contact menu item.

After uninstalling a component with an existing menu item, there were no empty entries in the - Select Component - select box. However, the uninstalled component did not show up either, although the menu item still exists. So it appears @roland-d's latest remark has not been addressed (properly) yet.

avatar joomla-bot
joomla-bot - comment - 27 Jun 2022

This pull requests has been automatically converted to the PSR-12 coding standard.

avatar rdeutz rdeutz - change - 21 Oct 2022
Title
[4.2] Menu Items overview - Filter on Component - v2
Menu Items overview - Filter on Component - v2
avatar rdeutz rdeutz - edited - 21 Oct 2022
avatar obuisard obuisard - change - 23 Oct 2022
Labels Added: ? Maintainers Checked PR-4.3-dev
Removed: ?
avatar obuisard
obuisard - comment - 26 Oct 2022

I have tested this item successfully on 40e3f99

Everything looks good, even after extension uninstall


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar obuisard obuisard - test_item - 26 Oct 2022 - Tested successfully
avatar obuisard
obuisard - comment - 26 Oct 2022

I would like to add that when a component is uninstalled, the menu items created with that component become 'orphan' and are no longer 'filtrable'. I would assume this as 'normal' behavior.

@pjdevries would you mind recording your test in the issue tracker? Thank you.

avatar obuisard
obuisard - comment - 26 Oct 2022

This PR requires updated documentation for the online help such as the one found at https://help.joomla.org/proxy?keyref=Help42:Menus:_Items

Thank you!

avatar jwaisner
jwaisner - comment - 8 Nov 2022

I have tested this item successfully on 40e3f99


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar jwaisner jwaisner - test_item - 8 Nov 2022 - Tested successfully
avatar jwaisner jwaisner - change - 8 Nov 2022
Status Pending Ready to Commit
Build 4.2-dev 4.3-dev
avatar jwaisner
jwaisner - comment - 8 Nov 2022

RTC


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar obuisard
obuisard - comment - 8 Nov 2022

Great PR, thank you Peter @pe7er for this feature and for all to comment and help make this a good addition. Peter, do you need help with documentation?

avatar obuisard obuisard - change - 8 Nov 2022
Labels Added: ?
avatar richard67
richard67 - comment - 12 Nov 2022

@jwaisner @obuisard Could at least one of you redo your test because there have been some changes? Just to see if it still works, so we can keep RTC. Thanks in advance.

avatar obuisard obuisard - change - 12 Nov 2022
Labels Added: Documentation Required ?
Removed: ?
avatar obuisard obuisard - test_item - 12 Nov 2022 - Tested successfully
avatar obuisard
obuisard - comment - 12 Nov 2022

I have tested this item successfully on 40e3f99

2nd testing successful


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/28832.

avatar obuisard
obuisard - comment - 17 Dec 2022

Hello Peter @pe7er, do you need help with documentation? Would love to sere this PR merged soon.

avatar carlitorweb
carlitorweb - comment - 12 Jan 2023

Documentation added ✔️ (https://docs.joomla.org/Help4.x:Menus:_Items)

avatar obuisard obuisard - close - 12 Jan 2023
avatar obuisard obuisard - merge - 12 Jan 2023
avatar obuisard obuisard - change - 12 Jan 2023
Status Ready to Commit Fixed in Code Base
Closed_Date 0000-00-00 00:00:00 2023-01-12 01:32:34
Closed_By obuisard
avatar obuisard
obuisard - comment - 12 Jan 2023

Thank you Peter @pe7er for this PR!

Add a Comment

Login with GitHub to post a comment