We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to documentation i should be able to assign menu links to regions in the hook_menu:
function qleva_menu() { var items = {}; items['qleva_start'] = { title: 'Start', page_callback: 'qleva_start_page' }; items['qleva_start_auth'] = { title: 'Home Auth2', page_callback: 'qleva_start_auth', pageshow: 'qleva_start_auth_show', //pagehide: 'qleva_start_auth_remove' //access_arguments: ['authenticated user'], region: { name: 'header', options: { attributes: { 'data-icon': 'home', 'class': 'ui-btn-left' } } } }; return items; }
this provides a page with correct title and correct content; but no icon shows in the header.
It does work when i add it in settings.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
According to documentation i should be able to assign menu links to regions in the hook_menu:
this provides a page with correct title and correct content; but no icon shows in the header.
It does work when i add it in settings.js
The text was updated successfully, but these errors were encountered: