You are here

function views_natural_sort_text_field_views_natural_sort_get_entry_types in Views Natural Sort 7.2

Implements hook_views_natural_sort_get_entry_types().

3 calls to views_natural_sort_text_field_views_natural_sort_get_entry_types()
views_natural_sort_text_field_form_field_ui_field_edit_form_alter_submit in ./views_natural_sort_text_field.module
Implements hook_form_FORM_ID_alter().
views_natural_sort_text_field_views_natural_sort_queue_rebuild_data in ./views_natural_sort_text_field.module
Implements hook_views_natural_sort_queue_rebuild_data().
views_natural_sort_text_field_views_natural_sort_queue_rebuild_data_count in ./views_natural_sort_text_field.module
Implements hook_views_natural_sort_queue_rebuild_data_count().

File

./views_natural_sort_text_field.module, line 65
The Views Natural Sort Text Field module file.

Code

function views_natural_sort_text_field_views_natural_sort_get_entry_types($fields = array()) {
  if (empty($fields)) {
    $fields = views_natural_sort_text_field_get_configured_fields();
  }
  $entry_types = array();
  foreach ($fields as $field) {
    $entry_types = array_merge($entry_types, views_natural_sort_text_field_get_entry_types_from_field($field));
  }
  return $entry_types;
}