You are here

function seotools_kwresearch_kwresearch_apikey_form in Drupal SEO Tools 6

1 string reference to 'seotools_kwresearch_kwresearch_apikey_form'
seotools_kwresearch_kwresearch_apikey in plugins/seotools.presets.inc

File

plugins/seotools.presets.inc, line 541

Code

function seotools_kwresearch_kwresearch_apikey_form() {
  $form['kwresearch_apikey'] = array(
    '#type' => 'textfield',
    '#title' => t('Wordtracker API Key'),
    '#default_value' => variable_get('kwresearch_apikey', ''),
    '#description' => t('You need an API key to enable keyword statistics and related phrase lookups. <br>If you have a Wordtracker API key enter it above. <br>To get a full API key, contact !wordtracker_link. You can also use a free !levelten_link <br>to enable demo level access to Wordtracker statitics.', array(
      '!wordtracker_link' => l(t('Wordtracker'), 'http://www.wordtracker.com/api', array(
        'attributes' => array(
          'target' => '_blank',
        ),
      )),
      '!levelten_link' => l(t('LevelTen SEO API key'), 'http://www.leveltendesign.com/user/0/l10seoapi', array(
        'attributes' => array(
          'target' => '_blank',
        ),
      )),
    )),
  );
  return system_settings_form($form);
}