How do I build a Drupal's View that shows access information -
i need create views of selection of nodes, of current user may or may not have access to. able is, known access node, print out either link node, or statement letting them know there no access node without conditions met first.
i had thought pretty simple matter, on attempting it, don't know how proceed. know how create such views?
update:
looks might simple matter of using views custom field module
indeed, simplest solution found use views custom field module check if user has access node , depending on that, generating output:
if (node_access('view', $data->nid)) { //... }
Comments
Post a Comment