record set CForm::GetFieldList( int FORM_ID, varchar additional, varchar &by, varchar &order, array arFilter=array(), boolean &is_filtered );
The method is used to retrieve a list of the form questions and/or fields.
Parameter | Description |
---|---|
FORM_ID | Form ID. |
additional | Denotes which information to return.
|
by | Allows to specify the name of the field
by which the sorting is to be performed. The following values allowed:
|
order | Sort order. The following values apply:
|
arFilter | Array used as the values filter. The
following key names apply:
|
is_filtered | Contains true on return if the results has been filtered, or false otherwise. |
Returns a database record containing the form parameters.
$arFilter = Array( "ID" => $find_id, "TITLE" => $find_title, "VARNAME" => $find_varname, "ACTIVE" => $find_active, "IN_RESULTS_TABLE" => $find_in_table, "IN_FILTER" => $find_in_filter, "REQUIRED" => $find_required, "COMMENTS" => $find_comments ); $rsFields = CForm::GetFieldList($WEB_FORM_ID, $additional, $by, $order, $arFilter, $is_filtered);
© 2001-2005 Bitrix | Bitrix Site Manager - Content Management & Portal Solutions |