You are here

function notifications_field_args in Notifications 6.3

Same name and namespace in other branches
  1. 5 notifications.admin.inc \notifications_field_args()
  2. 6 notifications.pages.inc \notifications_field_args()
  3. 6.2 notifications.pages.inc \notifications_field_args()

Process arguments and return an array of field/value pairs

1 call to notifications_field_args()
notifications_page_subscribe in ./notifications.pages.inc
Menu callback add subscription

File

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

Code

function notifications_field_args($fields, $values) {
  $names = explode(',', $fields);
  $params = explode(',', $values);
  return array_combine($names, $params);
}