diff options
Diffstat (limited to 'modules/field/field.module')
-rw-r--r-- | modules/field/field.module | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/field/field.module b/modules/field/field.module index 9f023aa6b..70ae73dde 100644 --- a/modules/field/field.module +++ b/modules/field/field.module @@ -90,10 +90,16 @@ define('FIELD_LOAD_REVISION', 'FIELD_LOAD_REVISION'); /** * @name Field query flags * @{ - * Flags for use in the $result_format parameter in field_attach_query(). + * Flags for field_attach_query(). */ /** + * Limit argument for field_attach_query() to request all available + * objects instead of a limited number. + */ +define('FIELD_QUERY_NO_LIMIT', 'FIELD_QUERY_NO_LIMIT'); + +/** * Result format argument for field_attach_query(). */ define('FIELD_QUERY_RETURN_VALUES', 'FIELD_QUERY_RETURN_VALUES'); |