You are here

function hosting_platform_post_hosting_unlock_task in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 platform/hosting_platform.drush.inc \hosting_platform_post_hosting_unlock_task()
  2. 7.3 platform/hosting_platform.drush.inc \hosting_platform_post_hosting_unlock_task()

File

platform/hosting_platform.drush.inc, line 122
Implement drush hooks for the Platforms module.

Code

function hosting_platform_post_hosting_unlock_task($task, $data) {
  $task->ref->platform_status = HOSTING_PLATFORM_ENABLED;
  $task->ref->no_verify = TRUE;
  node_save($task->ref);
}