1 views_plugin_style.inc | views_plugin_style::build_sort() |
Called by the view builder to see if this style handler wants to interfere with the sorts. If so it should build; if it returns any non-TRUE value, normal sorting will NOT be added to the query.
File
- core/
modules/ views/ plugins/ views_plugin_style.inc, line 303 - Definition of views_plugin_style.
Class
- views_plugin_style
- Base class to define a style plugin handler.
Code
function build_sort() {
return TRUE;
}