Closed (fixed)
Project:
Field Group
Version:
7.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
28 Aug 2012 at 07:01 UTC
Updated:
4 Jan 2014 at 02:24 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
merlinofchaos commented1) That path is part of the fieldable panels panes module, not Panels.
2) That path is actually handled by core's Field UI module, the same way that the manage display page for content types is. All Fieldable Panels Panes does is provide the menu entry and associated setup, and field UI renders the page from it. Any flaws it has should be shared by the manage display page for any (node) content type.
Comment #2
mgiffordSorry @merlinofchaos - I've really not done enough with Panels. That's changing though.
1) Switching this issue to Fieldable Panels Panes module.
2) It's not missing from the "Add new field" input fields in admin/structure/types/manage/blog/fields so pretty sure this is a bug introduced by Fieldable Panels Pane.
Thanks for pointing me in the right direction. Hopefully we'll be able to track this issue down quickly.
Comment #3
merlinofchaos commentedThis is the entirety of the code in this module that handles those paths:
(Note that in the latest release the path has changed slightly from earlier releases).
That's in fieldable_panels_panes_entity_info(). The field_ui module takes that data and makes tabs out of it and it fully handles those tabs. Why those act different I am not sure. It may be possible that there's some other data in hook_entity_info that we're missing, but if so I am unfamiliar with it.
The field_ui module takes that data and creates the tabs
Comment #4
mgiffordSorry about all the static here, but you've really helped to track this down. So many related modules, I really should have just stated with grep....
Anyways, found the problem. Provided a patch. Hopefully we can get it into a future release.
It boils down to the fields not being given titles.
Thanks again Merlin.
Comment #5
merlinofchaos commentedI'm glad I was able to help you track it down!
Comment #6
nils.destoop commentedThx for noticing this. The patch has been committed to dev.
Comment #7
mgiffordgreat!