You are here

function adsense_injector_update_5000 in Content Injector (formerly AdSense Injector) 7

Same name and namespace in other branches
  1. 5.2 adsense_injector.install \adsense_injector_update_5000()
  2. 6.3 adsense_injector.install \adsense_injector_update_5000()
  3. 6.2 adsense_injector.install \adsense_injector_update_5000()

@todo Please document this function.

See also

http://drupal.org/node/1354

File

./adsense_injector.install, line 29
The install and update code for the adsense injector module.

Code

function adsense_injector_update_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.');
}