You are here

function field_views_field_info in Field Views 7

Implementation of hook_field_info()

File

./field_views.module, line 6

Code

function field_views_field_info() {
  return array(
    'field_views' => array(
      'label' => t('View'),
      'description' => t('This field allows for an embeded view'),
      'settings' => array(
        'global_setting' => 255,
      ),
      'instance_settings' => array(
        'local' => 0,
      ),
      'default_widget' => 'field_views',
      'default_formatter' => 'field_views_formatter',
      // might turn this on later
      'no_ui' => FALSE,
    ),
  );
}