You are here

function hosting_task_hosting_task_dangerous_tasks in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 task/hosting_task.module \hosting_task_hosting_task_dangerous_tasks()

Implements hook_hosting_task_dangerous_tasks().

File

task/hosting_task.module, line 2034
Web server node type is defined here.

Code

function hosting_task_hosting_task_dangerous_tasks() {
  $dangerous_tasks = array(
    'disable',
    'delete',
  );
  return $dangerous_tasks;
}