1 views_ui.module | 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 840 - Provide structure for the administrative interface to Views.
Code
function views_ui_contextual_links_suppress($set = NULL) {
$suppress = &backdrop_static(__FUNCTION__);
if (isset($set)) {
$suppress = $set;
}
return $suppress;
}