You are here

function lazy_field_types in Lazy-load 8.2

Returns supported field-types.

Return value

array

3 calls to lazy_field_types()
lazy_field_formatter_settings_summary_alter in ./lazy.module
Implements hook_field_formatter_settings_summary_alter().
lazy_field_formatter_third_party_settings_form in ./lazy.module
Implements hook_field_formatter_third_party_settings_form().
lazy_form_entity_view_display_edit_form_alter in ./lazy.module
Implements hook_form_FORM_BASE_ID_alter().

File

./lazy.module, line 40
Module file for Lazy-load.

Code

function lazy_field_types() {
  return [
    'colorbox',
    'image',
  ];
}