Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trust me I have tried Googling it but I am just not getting a clear grasp.

Thank You.

share|improve this question

3 Answers

up vote 8 down vote accepted

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:

function mymodulename_perm {
return array('use custom feature', 'use the other custom feature');
}

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:

if (user_access('use custom feature')) {
  //do something
}
share|improve this answer
1  
and if you're wondering how to use this on hook_menu, just set 'access arguments' => 'use custom feature' on your menu item. 'access callback' is set to user_access by default, but might be overridden (check api.drupal.org/api/function/hook_menu/6 for more details) – barraponto Jun 10 '10 at 23:06

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

  $items['blog/feed'] = array(
    'title' => 'RSS feed',
    'page callback' => 'blog_feed',
    'access callback' => 'custom_module_blog_access',
    'access arguments' => array('feed'),
    'type' => MENU_CALLBACK,
  );

The function custom_module_blog_access() will be called as custom_module_blog_access('feed'). If the function returns TRUE, then the user will be given access to the menu callback; differently, the user will see the error 403 page (access denied). Normally, the access callback is not defined, and by default Drupal will use user_access().

share|improve this answer

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(

'title' => 'Edit',
'page callback' => 'newsticker_item_edit',
'page arguments' => array(1),
'access callback' => 'mymodule_edit_access',
'type' => MENU_LOCAL_TASK);

$items['mymodule/%/delete'] = array(

'title' => 'Delete',
'page callback' => 'mymodule_delete',
'page arguments' => mymodule(1),
//'access callback' => TRUE,
//'access callback' => 'mymodule_edit_access',
'type' => MENU_LOCAL_TASK

);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.