You are here

function notifications_edit_destination_form in Notifications 7

Same name and namespace in other branches
  1. 6.4 notifications.pages.inc \notifications_edit_destination_form()

Manage destination form. Edit subscriptions for a destination

File

./notifications.pages.inc, line 137
User pages for Notifications

Code

function notifications_edit_destination_form($form_state, $destination) {
  notifications_include('destination.inc');
  $account = $destination
    ->get_user();
  $form = notifications_destination_view_subform($destination);
  return $form;
}