function _poll_menu_access

Callback function to see if a node is acceptable for poll menu items.

1 string reference to '_poll_menu_access'
poll_menu in modules/poll/poll.module
Implements hook_menu().

File

modules/poll/poll.module, line 126

Code

function _poll_menu_access($node, $perm, $inspect_allowvotes) {
    return user_access($perm) && $node->type == 'poll' && ($node->allowvotes || !$inspect_allowvotes);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.