Fixed
Details
Priority
MinorAssignee
AlexAlexReporter
AlexAlexDeveloper
AlexAlexReviewer
Gleb SinkovskiyGleb SinkovskiyChange Log Group
AddedChange Log Message
Adds ability to display arbitrary category fields inside a menu element.Patch Instructions
Patches must be submitted through Phabricator.
To submit patch via Command Line use Patches Workflow (via Arcanist) tutorial.
To submit patch via Web Interface use Patches Workflow (via Web Interface) tutorial.
Time tracking
4m loggedExternal issue ID
1400External issue URL
Story Points
1Fix versions
Affects versions
Details
Details
Priority
Assignee
Alex
AlexReporter
Alex
AlexDeveloper
Alex
AlexReviewer
Gleb Sinkovskiy
Gleb SinkovskiyChange Log Group
Added
Change Log Message
Adds ability to display arbitrary category fields inside a menu element.
Patch Instructions
Patches must be submitted through Phabricator.
To submit patch via Command Line use Patches Workflow (via Arcanist) tutorial.
To submit patch via Web Interface use Patches Workflow (via Web Interface) tutorial.
Time tracking
4m logged
External issue ID
1400
External issue URL
Story Points
1
Fix versions
Affects versions
Created September 16, 2012 at 11:47 AM
Updated December 29, 2024 at 8:53 PM
Resolved July 25, 2016 at 9:12 AM
Right now we have nice <inp2:st_CachedMenu .../> tag, that prints every menu on website without doing a database query.
This works good, however in some projects I came across situations where a new database field (e.g. extra css class name) was added to a page (category) and this field needs to be used during menu printing.
This requires to override 2 methods in MenuHelper class.
I'm proposing to create an array (as a property of MenuHelper class), where mapping is created between Categories database table fields and parameter names, used to retrieve their values from template.
Here is an example array:
Array ( 'parent_path' => 'ParentPath', 'icon' => Array ('Icon', 'resize:100x100'), );
Then these parameters would be used with GetField method.