You are here

function hosting_platform_op_lock in Hosting 6.2

Callback for platform lock operation.

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

File

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

Code

function hosting_platform_op_lock($nodes) {
  foreach ($nodes as $nid) {
    hosting_add_task($nid, 'lock');
  }
}