function adsense_injector_update_6000 in Content Injector (formerly AdSense Injector) 7
Same name and namespace in other branches
- 6.3 adsense_injector.install \adsense_injector_update_6000()
- 6.2 adsense_injector.install \adsense_injector_update_6000()
@todo Please document this function.
See also
File
- ./
adsense_injector.install, line 43 - The install and update code for the adsense injector module.
Code
function adsense_injector_update_6000() {
// This is just a fork of 5000.
$ret = array();
// TODO update_sql has been removed. Use the database API for any schema or data changes.
$ret[] = array();
// hook_update_N() no longer returns a $ret array. Instead, return
// nothing or a translated string indicating the update ran successfully.
// See http://drupal.org/node/224333#update_sql.
return t('TODO Add a descriptive string here to show in the UI.');
}