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
menu_local_actions is being rendered with a theme function. A render array makes it adjustable by subthemes.
Out with :
$variables['tabs']['#primary'][]['#markup'] = theme('menu_local_actions', array('menu_actions' => $variables['action_links'], 'attributes' => $dropdown_attributes));
In with :
$variables['tabs']['#primary'][] = array( '#theme' => 'menu_local_actions', '#menu_actions' => $variables['action_links'], '#attributes' => $dropdown_attributes, );
The text was updated successfully, but these errors were encountered:
#293: swapping out theme call for render array to make the action lin…
9f6fdb8
…ks infinitely more adjustable.
Also, just for reference this was needed in DENT-338
Sorry, something went wrong.
soniktrooth
No branches or pull requests
menu_local_actions is being rendered with a theme function. A render array makes it adjustable by subthemes.
Out with :
In with :
The text was updated successfully, but these errors were encountered: