You are here

function seotools_admin_setup in Drupal SEO Tools 7

1 string reference to 'seotools_admin_setup'
seotools_menu in ./seotools.module
Implements hook_menu().

File

./seotools.setup.inc, line 12
Admin page callback for the seotools module.

Code

function seotools_admin_setup($step = 0) {
  if (!$step) {
    $step = 0;
  }
  $form = drupal_get_form('seotools_setup_' . $step . '_form');
  return render($form);
}