function seo_setup_3_form in Drupal SEO Essentials 7
Select social media profiles
_state
Parameters
$form:
File
- ./
seo.setup.inc, line 139  - Admin page callback for the seotools module.
 
Code
function seo_setup_3_form($form, &$form_state) {
  $msg = t('Congratulations, you have successfully configured essential SEO features for your site.');
  /*
  $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;
}