Saya menggunakan potongan kode yang ditemukan dalam dokumentasi api D7 untuk hook hook_ode_access .
Kode ini akan memberikan akses untuk melihat konten "ebook" kepada pengguna yang memiliki izin "lihat ebook".
Anda memerlukan izin baru untuk mengontrol akses dengan menerapkan hook_permission ().
/**
* Implements hook_permission().
*/
function mymodule_permission() {
return array(
'view ebook' => array(
'title' => t('View Ebook'),
'description' => t('View Ebook nodes.'),
),
);
}
Dengan menerapkan hook_node_access () Drupal dapat memberikan atau menolak akses ke node.
/**
* Implements hook_node_access().
*/
function mymodule_node_access($node, $op, $account) {
// Checks for an ebook node in view mode.
if (is_object($node) && $node->type === 'ebook' && $op === 'view') {
// Grants permission to view the node if the current user has an role
// with the permission 'view ebook'.
if (user_access('view ebook')) {
return NODE_ACCESS_ALLOW;
}
// Otherwise disallows access to view the node.
return NODE_ACCESS_DENY;
}
// For all other nodes and other view modes, don't affect the access.
return NODE_ACCESS_IGNORE;
}
Izin lainnya (edit, hapus, dll) dapat ditangani melalui izin Drupal normal.
Secara opsional, Anda dapat menghapus konten dari tinjauan umum admin dengan menerapkan hook_query_TAG_NAME_alter.
/**
* Implements hook_query_TAG_NAME_alter().
*/
function mymodule_query_node_admin_filter_alter(QueryAlterableInterface $query) {
if (!user_access('view ebook')) {
$query->condition('n.type', 'ebook', '!=');
}
}