You are here

function taxonomy_access_element_info in Taxonomy Access Control 7

Implements hook_element_info().

File

./taxonomy_access.module, line 107
Allows administrators to specify access control for taxonomy categories.

Code

function taxonomy_access_element_info() {
  return array(
    'taxonomy_access_grant_table' => array(
      '#theme' => 'taxonomy_access_grant_table',
      '#regions' => array(
        '' => array(),
      ),
    ),
  );
}