You are here

function seotools_setup_2_form in Drupal SEO Tools 7

Select social media profiles

_state

Parameters

$form:

File

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

Code

function seotools_setup_2_form($form, &$form_state) {

  // clear wordstream error message
  drupal_get_messages('error');
  $msg = t('Congradulations, the Drupal SEO Tools suite is intalled and ready for use.');
  $msg .= '<h3>' . t('Next steps') . '</h3>';
  $items[] = t('If you have list of targeted keywords for your site, !import_link.', array(
    '!import_link' => l(t('import your keywords'), 'admin/structure/kwresearch/keyword_list/import'),
  ));
  $items[] = t('Discover targeted keywords for your site through !kwreserach_link.', array(
    '!kwreserach_link' => l(t('keyword research'), 'admin/structure/kwresearch/keyword_report'),
  ));
  $items[] = t('Analyze and optimize your content for the search engines using !contentanalysis_link.', array(
    '!contentanalysis_link' => l(t('content analysis'), 'admin/content/insight'),
  ));
  $msg .= theme('item_list', array(
    'items' => $items,
  ));
  $form['done'] = array(
    '#markup' => $msg,
  );
  return $form;
}