You are here

function hosting_platform_op_unlock in Hosting 6.2

Callback for platform unlock operation.

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

File

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

Code

function hosting_platform_op_unlock($nodes) {
  foreach ($nodes as $nid) {
    hosting_add_task($nid, 'unlock');
  }
}