function robotstxt_variable_info in RobotsTxt 7
Implements hook_variable_info().
File
- ./
robotstxt.variable.inc, line 11 - Definition of variables for Variable API module.
Code
function robotstxt_variable_info($options = array()) {
$variables['robotstxt'] = array(
'title' => t('Contents of robots.txt', array(), $options),
'type' => 'text',
'group' => 'robotstxt',
'localize' => TRUE,
'multidomain' => TRUE,
);
return $variables;
}