function node_update_7008
Split the 'administer nodes' permission from 'access content overview'.
Related topics
Archivo
- drupal-7.x/
modules/ node/ node.install, line 797 - Install, update and uninstall functions for the node module.
Código
function node_update_7008() {
$roles = user_roles(FALSE, 'administer nodes');
foreach ($roles as $rid => $role) {
_update_7000_user_role_grant_permissions($rid, array('access content overview'), 'node');
}
}