diff --git a/reference/stream/functions/stream-filter-append.xml b/reference/stream/functions/stream-filter-append.xml index 03eee77bd2..041ce54416 100644 --- a/reference/stream/functions/stream-filter-append.xml +++ b/reference/stream/functions/stream-filter-append.xml @@ -1,5 +1,5 @@ - + stream_filter_append @@ -11,11 +11,13 @@ boolstream_filter_append resourcestream stringfiltername + stringparams Adds filtername to the list of filters attached to stream. This filter will be - added to the end of the list and + added with the specified params + to the end of the list and will therefore be called last during stream opperations. To add a filter to the beginning of the list, use stream_filter_prepend. diff --git a/reference/stream/functions/stream-filter-prepend.xml b/reference/stream/functions/stream-filter-prepend.xml index 0b10ae10ed..3f9e393e36 100644 --- a/reference/stream/functions/stream-filter-prepend.xml +++ b/reference/stream/functions/stream-filter-prepend.xml @@ -1,5 +1,5 @@ - + stream_filter_prepend @@ -11,11 +11,13 @@ boolstream_filter_prepend resourcestream stringfiltername + stringparams Adds filtername to the list of filters attached to stream. This filter will be - added to the beginning of the list and + added with the specified params + to the beginning of the list and will therefore be called first during stream opperations. To add a filter to the end of the list, use stream_filter_append. diff --git a/reference/stream/functions/stream-get-filters.xml b/reference/stream/functions/stream-get-filters.xml index f3d8589f1e..5848c5b3f3 100644 --- a/reference/stream/functions/stream-get-filters.xml +++ b/reference/stream/functions/stream-get-filters.xml @@ -1,5 +1,5 @@ - + stream_get_filters @@ -9,11 +9,13 @@ Description arraystream_get_filters - + boolsystem - Returns an indexed array containing the name of all stream filters - available on the running system. + Returns an indexed array containing the name of all user-defined stream filters + available on the running system. If the system + parameter is set to true, then system defined filters will be included in the returned + array as well. See Also: