You are here

function hosting_site_op_disable in Hosting 6.2

Callback for site verify operation.

1 string reference to 'hosting_site_op_disable'
hosting_site_node_operations in site/hosting_site.module
Implements hook_node_operations().

File

site/hosting_site.module, line 391

Code

function hosting_site_op_disable($nodes) {
  foreach ($nodes as $nid) {
    hosting_add_task($nid, 'disable');
  }
}