function feeds_update_6010 in Feeds 6
Same name and namespace in other branches
- 7 feeds.install \feeds_update_6010()
Show a message about Feeds News, Feeds Import and Feeds fast news features.
File
- ./
feeds.install, line 500 - Schema definitions install/update/uninstall hooks.
Code
function feeds_update_6010() {
drupal_set_message(t('You may install Feeds News and Feeds Import as replacement for Feeds Defaults module.'));
if (module_exists('features')) {
drupal_set_message(t('<strong>Review enabled state of importer configurations on admin/build/feeds and features on admin/build/features.</strong>'));
}
else {
drupal_set_message(t('<strong>Review enabled state of importer configurations on admin/build/feeds and Feeds modules on admin/build/modules.</strong>'));
}
return array();
}