You are here

function hosting_site_op_enable in Hosting 6.2

Callback for site verify operation.

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

File

site/hosting_site.module, line 400

Code

function hosting_site_op_enable($nodes) {
  foreach ($nodes as $nid) {
    hosting_add_task($nid, 'enable');
  }
}