function config_test_list_page

Page callback; Lists available ConfigTest objects.

1 string reference to 'config_test_list_page'
config_test_menu in drupal/core/modules/config/tests/config_test/config_test.module
Implements hook_menu().

File

drupal/core/modules/config/tests/config_test/config_test.module, line 135
Provides Config module hook implementations for testing purposes.

Code

function config_test_list_page() {
  $controller = entity_list_controller('config_test');
  return $controller
    ->render();
}