function views_form_id
Same name in other branches
- 6.x-3.x views.module \views_form_id()
Returns a form ID for a Views form using the name and display of the View.
3 calls to views_form_id()
- template_preprocess_views_view in theme/
theme.inc - Preprocess the primary theme implementation for a view.
- view::execute in includes/
view.inc - Execute the view's query.
- view::render in includes/
view.inc - Render this view for a certain display.
File
-
./
views.module, line 66
Code
function views_form_id($view) {
$parts = array(
'views_form',
$view->name,
$view->current_display,
);
return implode('_', $parts);
}