You are here

function views_content_views_panes_ctools_content_types in Chaos Tool Suite (ctools) 6

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

Implementation of 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',
    'js' => array(
      drupal_get_path('module', 'ctools') . '/js/dependent.js',
    ),
  );
}