You are here

function sharemessage_variable_info in Share Message 7

Implements hook_variable_info().

File

./sharemessage.module, line 667
New Sharing Module.

Code

function sharemessage_variable_info($options) {

  // Variables used in output within the kampa_theme.
  $variables['sharemessage_twitter_user'] = [
    'localize' => TRUE,
    'title' => t('Twitter user', [], $options),
    'group' => 'sharemessage',
  ];
  return $variables;
}