function simple_access_action_info in Simple Access 6.2
Same name and namespace in other branches
- 8.3 simple_access.module \simple_access_action_info()
- 5.2 inc/workflow_ng.inc \simple_access_action_info()
- 7.2 simple_access.module \simple_access_action_info()
Implementation of hook_action_info()
File
- ./
simple_access.module, line 653 - This module allows administrators to make nodes viewable by specific 'access groups'. Each access group can contain any number of roles. If a node is not assigned to any access groups, it will remain viewable by all users.
Code
function simple_access_action_info() {
return array(
'simple_access_owner_grant' => array(
'type' => 'node',
'description' => t('Grant permissions to content owner'),
'configurable' => TRUE,
'hooks' => array(
'nodeapi' => array(
'insert',
'update',
),
),
),
'simple_access_owner_revoke' => array(
'type' => 'node',
'description' => t('Revoke permissions from content owner'),
'configurable' => TRUE,
'hooks' => array(
'nodeapi' => array(
'insert',
'update',
),
),
),
'simple_access_group_grant' => array(
'type' => 'node',
'description' => t('Grant permissions to groups'),
'configurable' => TRUE,
'hooks' => array(
'nodeapi' => array(
'insert',
'update',
),
),
),
'simple_access_group_revoke' => array(
'type' => 'node',
'description' => t('Revoke permissions from groups'),
'configurable' => TRUE,
'hooks' => array(
'nodeapi' => array(
'insert',
'update',
),
),
),
'simple_access_profile_enable' => array(
'type' => 'node',
'description' => t('Enable access profile'),
'configurable' => TRUE,
'hooks' => array(
'nodeapi' => array(
'insert',
'update',
),
),
),
'simple_access_profile_disable' => array(
'type' => 'node',
'description' => t('Disable access profile'),
'configurable' => TRUE,
'hooks' => array(
'nodeapi' => array(
'insert',
'update',
),
),
),
);
}