function seotools_alchemy_alchemy_apikey in Drupal SEO Tools 6
File
- plugins/
seotools.presets.inc, line 431
Code
function seotools_alchemy_alchemy_apikey() {
$setting = array();
$setting['title'] = 'API Key';
if (variable_get('alchemy_apikey', '') == '') {
$setting['value'] = drupal_get_form('seotools_alchemy_alchemy_apikey_form');
$setting['severity'] = REQUIREMENT_ERROR;
}
else {
$setting['value'] = 'Alchemy API Key set to: ' . variable_get('alchemy_apikey', '');
$setting['severity'] = REQUIREMENT_OK;
}
return $setting;
}