You are here

function views_ui_contextual_links_suppress_push in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 8.3 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()
views_ui_preview in includes/admin.inc
Returns the results of the live preview.

File

./views_ui.module, line 769
Provide structure for the administrative interface to Views.

Code

function views_ui_contextual_links_suppress_push() {
  views_ui_contextual_links_suppress((int) views_ui_contextual_links_suppress() + 1);
}