Trust me I have tried Googling it but I am just not getting a clear grasp.
Thank You.
|
|
|
in /admin/user/permissions you will see lots of access options. they come from drupal modules, and lets the site administrator distribute specific permissions to user roles (drupal provides 'anonymous' and 'registered' roles by default). modules declare them through hook_perm and they are as easy to use as:
and they will show up there, ready to be used. now, in any function of yours, you can check for user access through user_access which is just as easy to use:
|
|||||
|
|
Access arguments are the arguments passed to the function that checks if a user has access to a menu. Given a menu callback definition as the following
The function |
|||
|
|
|
How this work in Drupal 7. I am migrating one module from drupal 6 to drupal 7. rest work fine but for edit & delete record( custom records) gives me access denide. for list add, setting works fine . problem with edit & delete options my code is like $items['mymodule/%/edit'] = array(
$items['mymodule/%/delete'] = array(
|
|||
|
|