You are here

function views_content_views_panes_ctools_content_types in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 views_content/plugins/content_types/views_panes.inc \views_content_views_panes_ctools_content_types()

Implements hook_ctools_content_types()

File

views_content/plugins/content_types/views_panes.inc, line 12
Content type plugin to allow Views to be exposed as a display type, leaving most of the configuration on the view.

Code

function views_content_views_panes_ctools_content_types() {
  return array(
    'title' => t('View panes'),
    'admin settings' => 'views_content_admin_form',
    'all contexts' => TRUE,
  );
}