You are here

function seo_admin_settings in Drupal SEO Essentials 7

Displays the form for the standard settings tab.

Return value

array A structured array for use with Forms API.

1 string reference to 'seo_admin_settings'
seo_menu in ./seo.module
Implements hook_menu().

File

./seo.admin.inc, line 14
Admin include file.

Code

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