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