- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
/**
* Implementation of hook_access().
*
* Node modules may implement node_access() to determine the operations
* users may perform on nodes. This example uses a very common access pattern.
*/
function node_example_access($op, $node, $account) {
if ($op == 'create') {
return user_access('create example content', $account);
}
if ($op == 'update') {
if (user_access('edit any example content', $account) || (user_access('edit own example content', $account) && ($account->uid == $node->uid))) {
return TRUE;
}
}
if ($op == 'delete') {
if (user_access('delete any example content', $account) || (user_access('delete own example content', $account) && ($account->uid == $node->uid))) {
return TRUE;
}
}
}
http://api.drupal.org/api/examples/node_example--node_example.module/6/source
тут еще много.
но факт что те кто это пишут таки нужные люди. сама документация достаточно достоверна
brainstorm 02.02.2011 03:15 # 0
Lure Of Chaos 02.02.2011 12:55 # −1
brainstorm 02.02.2011 13:06 # 0
Lure Of Chaos 02.02.2011 13:13 # −1
но вот $op='read'; обломов не будет - сразу скажут, что сам дурак
brainstorm 02.02.2011 13:29 # 0
Lure Of Chaos 02.02.2011 13:32 # −1
brainstorm 02.02.2011 13:38 # 0
hook_nodeapi_*
итд - если по операции делить - то имхо это будет очень слишком дохуя :)
Lure Of Chaos 02.02.2011 13:42 # −1
brainstorm 02.02.2011 13:44 # +1