function 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()
- views_ui_preview in includes/
admin.inc - Returns the results of the live preview.
File
-
./
views_ui.module, line 770
Code
function views_ui_contextual_links_suppress_push() {
views_ui_contextual_links_suppress((int) views_ui_contextual_links_suppress() + 1);
}