diff --git a/src/modules/htable/doc/htable_admin.xml b/src/modules/htable/doc/htable_admin.xml index 6793bff4350..dca7cd279a2 100644 --- a/src/modules/htable/doc/htable_admin.xml +++ b/src/modules/htable/doc/htable_admin.xml @@ -1116,6 +1116,56 @@ sht_iterator_end("i1"); } sht_iterator_end("i1"); ... + + + +
+ + <function moreinfo="none">sht_iterator_sets(iname, sval)</function> + + + Set the value of the current item to the string in the sval. + + + The parameters can be dynamic strings with variables. + + + This function can be used from ANY_ROUTE. + + + <function>sht_iterator_sets</function> usage + +... + sht_iterator_start("i1", "h1"); + sht_iterator_next("i1"); + sht_iterator_sets("i1", "$ci"); + sht_iterator_end("i1"); +... + + +
+
+ + <function moreinfo="none">sht_iterator_seti(iname, ival)</function> + + + Set the value of the current item to the integer in the ival. + + + The parameters can be dynamic strings or integers with variables. + + + This function can be used from ANY_ROUTE. + + + <function>sht_iterator_seti</function> usage + +... + sht_iterator_start("i1", "h1"); + sht_iterator_next("i1"); + sht_iterator_seti("i1", "20"); + sht_iterator_end("i1"); +...