function features_get_feature_title in Features 7
Same name and namespace in other branches
- 6 features.module \features_get_feature_title()
- 7.2 features.module \features_get_feature_title()
Menu title callback.
1 string reference to 'features_get_feature_title'
- features_menu in ./
features.module - Implements hook_menu().
File
- ./
features.module, line 797 - Module file for the features module, which enables the capture and management of features in Drupal. A feature is a collection of Drupal entities which taken together statisfy a certain use-case.
Code
function features_get_feature_title($feature) {
return $feature->info['name'];
}