You are here

function token_update_7001 in Token 7

Deprecate and disable the token_actions module.

File

./token.install, line 59
Install, update and uninstall functions for the token module.

Code

function token_update_7001() {
  module_disable(array(
    'token_actions',
  ));
  return 'The Token actions module has been deprecated by the updated system module actions that support tokens.';
}