function seotools_alchemy_alchemy_apikey_form in Drupal SEO Tools 6
1 string reference to 'seotools_alchemy_alchemy_apikey_form'
File
- plugins/
seotools.presets.inc, line 446
Code
function seotools_alchemy_alchemy_apikey_form() {
$form['alchemy_apikey'] = array(
'#type' => 'textfield',
'#title' => t('Alchemy API Key'),
'#default_value' => variable_get('alchemy_apikey', ''),
'#description' => t('You need an API key to use the Alchemy API service. !alchemy_link.', array(
'!alchemy_link' => l(t('Get an Alchemy API key here'), 'http://www.alchemyapi.com/api/register.html', array(
'attributes' => array(
'target' => '_blank',
),
)),
)),
);
return system_settings_form($form);
}