function token_custom_features_export_options in Custom Tokens 7.2
Implements hook_features_export_options().
File
- ./
token_custom.features.inc, line 11 - Features integration for the Custom tokens module.
Code
function token_custom_features_export_options() {
$options = array();
$data = token_custom_features_config_get_tokens();
foreach ($data as $key) {
$options[$key->machine_name] = $key->machine_name;
}
return $options;
}