You are here

function notifications_edit_destination_form in Notifications 6.4

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

Manage destination form. Edit subscriptions for a destination

1 string reference to 'notifications_edit_destination_form'
notifications_menu in ./notifications.module
Implementation of hook_menu().

File

./notifications.pages.inc, line 68
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;
}