You are here

function views_content_admin_page in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 views_content/views_content.module \views_content_admin_page()

Page callback to provide the basic administration form.

1 string reference to 'views_content_admin_page'
views_content_menu in views_content/views_content.module
Implements hook_menu().

File

views_content/views_content.module, line 144
Provides views as panels content, configurable by the administrator. Each view provided as panel content must be configured in advance, but once configured, building panels with views is a little bit simpler.

Code

function views_content_admin_page() {
  $form = array();
  views_content_admin_form($form);
  return system_settings_form($form);
}