function acl_disable in ACL 5
Implementation of hook_disable
File
- ./
acl.module, line 286 - acl.module
Code
function acl_disable() {
drupal_set_message(t('You have disabled the ACL module—to avoid permission problems you should now go to !link and click on the [!button] button!', array(
'!link' => l('admin/content/node-settings', 'admin/content/node-settings'),
'!button' => t('Rebuild permissions'),
)));
}