You are here

function gdpr_task_type_form in General Data Protection Regulation 7

Edit form for task bundles.

File

modules/gdpr_tasks/gdpr_tasks.admin.inc, line 11
Administrative page and form callbacks for the GDPR Tasks module.

Code

function gdpr_task_type_form($form, &$form_state, $bundle = array(), $op = 'edit') {

  // @todo Do we need to edit bundles?
  $form['message'] = array(
    '#type' => 'markup',
    '#markup' => 'Editing of GDPR Task types is not currently supported.',
  );
  return $form;
}