function views_table_add_sort in Views (for Drupal 7) 5
Helper function to make table creation a little easier. It adds the necessary data to the $table array.
1 call to views_table_add_sort()
- profile_views_add_sort in modules/
views_profile.inc - Add profile fields to sort table
File
- ./
views.module, line 1114
Code
function views_table_add_sort(&$table, $name, $label, $help, $others = array()) {
views_table_add_data($table, 'sorts', $name, $label, $help, $others);
}