function _taxonomy_access_flag_rebuild in Taxonomy Access Control 7
Flags node access for rebuild with a message for administrators.
Related topics
2 calls to _taxonomy_access_flag_rebuild()
- taxonomy_access_affected_nodes in ./
taxonomy_access.module - Caches and retrieves nodes affected by a taxonomy change.
- _taxonomy_access_node_access_update in ./
taxonomy_access.module - Updates node access grants for a set of nodes.
File
- ./
taxonomy_access.module, line 559 - Allows administrators to specify access control for taxonomy categories.
Code
function _taxonomy_access_flag_rebuild() {
drupal_set_message(t("Taxonomy Access Control is updating node access... If you see a message that content access permissions need to be rebuilt, you may wait until after you have completed your configuration changes."), 'status');
node_access_needs_rebuild(TRUE);
}