在有机群体的背景下,我正在编写一个模块,该模块将阻止不是群组成员的用户将群组帖子添加到该群组中。
我的模块当前设置了必要的权限,并检测用户是否具有该权限。
因此,当用户正在查看群组页面时,我想禁用/删除标准链接以创建群组帖子。
答案 0 :(得分:2)
尝试这种方法。
function mymodule_menu_alter(&$items) {
global $user;
// Perform code for finding out users permissions.
// lets suppose we set true or false to $restricted after all
if ($restricted && isset($items['node/add/yourtype'])) {
$items['node/add/yourtype']['access arguments'] = FALSE;
// or unset($items['node/add/yourtype']) to remove item for user
}
}
答案 1 :(得分:0)
如果我理解正确,您不希望某些用户创建内容类型。
所以步骤是:
1)创建一个菜单钩子。
// Here we make sure if the user goes to for creating this node type
// we can use the appropriate call back function to stop it.
function yourmodoule_menu() {
$items = array();
$items['node/add/page'] = array(
'page arguments' => array('yourmodule_additional_actions'),
'access arguments' => array('administer create content')
);
}
2)然后创建一个权限挂钩,以确保只有某些用户拥有此权限。
// drupal will only allow access to to path 'node/add/page' with people
// who have access given by you.
function yourmodule_permission() {
return array(
'add content' => array(
'title' => t('Administer create conent'),
'description' => t('Perform administration tasks and create content')
)
)
}
3)为拥有此权限的用户编写代码。
// Only affter they have this permisson drupal will allow them access
// to the below function.
function yourmodule_additional_actions() {
// this code will only execute if the user has the permission
// "Administer create conent"
}