You are here

views_view_field.module in Views PDF 8

The views field is used to add a field, which can include another view into the current view.

File

modules/views_view_field/views_view_field.module
View source
<?php

/**
 * @file
 * The views field is used to add a field, which can include another view into
 * the current view.
 */

/**
 * Implementation of hook_views_api().
 */
function views_view_field_views_api() {
  return array(
    'api' => 3,
  );
}

Functions

Namesort descending Description
views_view_field_views_api Implementation of hook_views_api().