You are here

function service_links_variable_info in Service links 7.2

Implements hook_variable_info().

File

./service_links.variable.inc, line 6

Code

function service_links_variable_info($options) {
  $variable['service_links_label_in_node'] = array(
    'title' => t('Print this label', array(), $options),
    'description' => t('Label for service links in nodes', array(), $options),
    'type' => 'string',
  );
  return $variable;
}