function notifications_field_args in Notifications 5
Same name and namespace in other branches
- 6 notifications.pages.inc \notifications_field_args()
 - 6.2 notifications.pages.inc \notifications_field_args()
 - 6.3 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.admin.inc  - Menu callback add subscription
 
File
- ./
notifications.admin.inc, line 519  
Code
function notifications_field_args($fields, $values) {
  $names = explode(',', $fields);
  $params = explode(',', $values);
  return array_combine($names, $params);
}