You are here

eva.views.inc in EVA: Entity Views Attachment 7

File

eva.views.inc
View source
<?php

/**
 * Implements hook_views_plugins().
 */
function eva_views_plugins() {
  return array(
    'display' => array(
      'entity_view' => array(
        'title' => t('EVA Field'),
        'help' => t("Display the view as a part of an entity's content."),
        'handler' => 'eva_plugin_display_entity',
        'theme' => 'eva_display_entity_view',
        'uses hook entity view' => TRUE,
        'use ajax' => TRUE,
        'use pager' => TRUE,
        'use more' => TRUE,
        'accept attachments' => TRUE,
        'admin' => t('Entity content'),
        'help topic' => 'display-entity',
      ),
    ),
  );
}

Functions

Namesort descending Description
eva_views_plugins Implements hook_views_plugins().