You are here

function seotools_admin_settings in Drupal SEO Tools 7

Same name and namespace in other branches
  1. 6 seotools.admin.inc \seotools_admin_settings()

Displays the form for the standard settings tab.

Return value

array A structured array for use with Forms API.

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

File

./seotools.admin.inc, line 13
Admin include file.

Code

function seotools_admin_settings() {
  $form['msg'] = array(
    '#markup' => t('Settings not implemented yet. Coming soon.'),
  );
  return $form;
}