function views_bulk_operations_book_action_info in Views Bulk Operations (VBO) 6
Same name and namespace in other branches
- 7.3 actions/book.action.inc \views_bulk_operations_book_action_info()
File
- actions/
book.action.inc, line 3
Code
function views_bulk_operations_book_action_info() {
if (!module_exists('book')) {
return array();
}
return array(
'views_bulk_operations_move_book_action' => array(
'type' => 'node',
'description' => t('Move book page to new parent'),
'configurable' => TRUE,
'behavior' => array(
'changes_node_property',
),
),
'views_bulk_operations_remove_book_action' => array(
'type' => 'node',
'description' => t('Remove book page from outline'),
'configurable' => FALSE,
'behavior' => array(
'deletes_node_property',
),
),
);
}