drupal函数:hook_enable

modules/system/system.api.php, 1624行

版本
5 – 7
hook_enable()

在模块启用后必须执行的行为.

这个钩子在每次模块启用的时候调用.

相关主题

Hooks
Allow modules to interact with the Drupal core.

代码

<?php function hook_enable() { mymodule_cache_rebuild(); } ?>


同步内容