Redirects to the field instance deletion form.
public function delete(array &$form, array &$form_state) {
$destination = array();
if (isset($_GET['destination'])) {
$destination = drupal_get_destination();
unset($_GET['destination']);
}
$form_state['redirect'] = array(
'admin/structure/types/manage/' . $this->instance['bundle'] . '/fields/' . $this->instance
->id() . '/delete',
array(
'query' => $destination,
),
);
}