function notifications_field_type in Notifications 6.4
Same name and namespace in other branches
- 7 notifications.module \notifications_field_type()
Get type information for field. For now its just subscription fields
3 calls to notifications_field_type()
- notifications_field_format_name in includes/
object.inc - Format field type name
- notifications_field_get_info in includes/
object.inc - Get full info array for field type that has the property.
- notifications_field_valid_value in includes/
object.inc - Check if the field has a valid value
File
- includes/
object.inc, line 321 - Notifications object and fields
Code
function notifications_field_type($type = NULL, $property = NULL) {
return notifications_subscription_fields($type, $property);
}