You are here

function farm_plan_record_delete_form in farmOS 7

Form for deleting a record from a plan. See farm_plan_record_unlink_form() for details.

1 string reference to 'farm_plan_record_delete_form'
farm_plan_menu in modules/farm/farm_plan/farm_plan.module
Implements hook_menu().

File

modules/farm/farm_plan/farm_plan.pages.inc, line 301
Farm plan pages.

Code

function farm_plan_record_delete_form($form, &$form_state, $plan, $record_type, $record_id) {
  return farm_plan_record_unlink_form($form, $form_state, $plan, $record_type, $record_id, TRUE);
}