function hosting_platform_op_verify in Hosting 6.2
Callback for platform verify operation.
1 string reference to 'hosting_platform_op_verify'
- hosting_platform_node_operations in platform/
hosting_platform.module - Implements hook_node_operations().
File
- platform/
hosting_platform.module, line 173 - Platform node type definition.
Code
function hosting_platform_op_verify($nodes) {
foreach ($nodes as $nid) {
hosting_add_task($nid, 'verify');
}
}