function views_ui_contextual_links_suppress_push
Same name in other branches
- 9 core/modules/views_ui/views_ui.module \views_ui_contextual_links_suppress_push()
- 8.9.x core/modules/views_ui/views_ui.module \views_ui_contextual_links_suppress_push()
- 11.x core/modules/views_ui/views_ui.module \views_ui_contextual_links_suppress_push()
Increments the views_ui_contextual_links_suppress() static variable.
When this function is added to the #pre_render of an element, and 'views_ui_contextual_links_suppress_pop' is added to the #post_render of the same element, then all contextual links within the element and its descendants are suppressed from being rendered. This is used, for example, during a View preview, when it is not desired for nodes in the Views result to have contextual links.
See also
views_ui_contextual_links_suppress_pop()
1 call to views_ui_contextual_links_suppress_push()
- ViewUI::renderPreview in core/
modules/ views_ui/ src/ ViewUI.php
File
-
core/
modules/ views_ui/ views_ui.module, line 299
Code
function views_ui_contextual_links_suppress_push() {
views_ui_contextual_links_suppress((int) views_ui_contextual_links_suppress() + 1);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.