You are here

function patterns_first_install_page in Patterns 7

Same name and namespace in other branches
  1. 7.2 includes/forms/first_install.inc \patterns_first_install_page()

@file Displays a form of necessary input configuration to the user.

1 string reference to 'patterns_first_install_page'
patterns_menu in ./patterns.module
Implements hook_menu().

File

includes/forms/first_install.inc, line 7
Displays a form of necessary input configuration to the user.

Code

function patterns_first_install_page() {
  module_load_include('inc', 'patterns', 'includes/forms/modules');
  $out = drupal_get_form('patterns_first_install');
  return $out;
}