views_ui_contextual_links_suppress($set = NULL)
Sets a static variable for controlling whether contextual links are rendered.
See also
views_ui_contextual_links_view_alter()
File
- core/modules/views_ui/views_ui.module, line 252
- Provide structure for the administrative interface to Views.
Code
function views_ui_contextual_links_suppress($set = NULL) { $suppress = &drupal_static(__FUNCTION__); if (isset($set)) { $suppress = $set; } return $suppress; }
Please login to continue.