function hook_filebrowser_action_process in Filebrowser 6.2
Parameters
unknown_type $node:
unknown_type $action:
unknown_type $fids:
1 function implements hook_filebrowser_action_process()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- filebrowser_filebrowser_action_process in ./
filebrowser.module - hook_filebrowser_action_process implementation
1 invocation of hook_filebrowser_action_process()
File
- ./
filebrowser.api.php, line 184 - hook_filebrowser_metadata_get implementation. the filebrowser file object to extract metadata from
Code
function hook_filebrowser_action_process($node, $action, $fids) {
switch ($action) {
case 'foo':
// processing for foo action
break;
}
}