function views_table_add_field in Views (for Drupal 7) 5
Helper function to make table creation a little easier. It adds the necessary data to the $table array.
2 calls to views_table_add_field()
- profile_views_add_field in modules/
views_profile.inc - Add profile fields to view table
- taxonomy_views_tables in modules/
views_taxonomy.inc - This include file implements views functionality on behalf of taxonomy.module
File
- ./
views.module, line 1098
Code
function views_table_add_field(&$table, $name, $label, $help, $others = array()) {
views_table_add_data($table, 'fields', $name, $label, $help, $others);
}