You are here

function hosting_platform_op_delete in Hosting 6.2

Callback for platform delete operation.

1 string reference to 'hosting_platform_op_delete'
hosting_platform_node_operations in platform/hosting_platform.module
Implements hook_node_operations().

File

platform/hosting_platform.module, line 200
Platform node type definition.

Code

function hosting_platform_op_delete($nodes) {
  foreach ($nodes as $nid) {
    hosting_add_task($nid, 'delete');
  }
}