You are here

function farm_plan_record_remove_form in farmOS 7

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

1 string reference to 'farm_plan_record_remove_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 293
Farm plan pages.

Code

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