function views_element_info

Implements hook_element_info().

File

drupal/core/modules/views/views.module, line 56
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_element_info() {
  $types['view'] = array(
    '#theme_wrappers' => array(
      'container',
    ),
    '#pre_render' => array(
      'views_pre_render_view_element',
    ),
    '#name' => NULL,
    '#display_id' => 'default',
    '#arguments' => array(),
  );
  return $types;
}