Table of Contents

Class FormHelper

Namespace
CMS.FormEngine
Assembly
CMS.FormEngine.dll

Class providing form helper methods.

public static class FormHelper
Inheritance
object
FormHelper

Fields

BIZ_FORM_FILES_FOLDER_NAME

Name of the folder where BizForm files are stored.

public const string BIZ_FORM_FILES_FOLDER_NAME = "BizFormFiles"

Field Value

string

FORM_PREFIX

Resolver name prefix for forms/classes - 'form.'

public const string FORM_PREFIX = "form."

Field Value

string

Methods

BizFormFilesFolder()

Gets custom on-line form file folder path.

public static string BizFormFilesFolder()

Returns

string

Value of custom on-line form file folder

ClearFormInfos(bool)

Clears cached FormInfo objects.

public static void ClearFormInfos(bool logTasks)

Parameters

logTasks bool

If true, web farm tasks are logged

EnsureDefaultValues(string, IDataContainer, FormResolveTypeEnum)

Ensures the default class values to the Data container for required fields (not allowing empty value) without a value.

[Obsolete("Method is deprecated and will be removed in the next version. Use LoadDefaultValues(string, IDataContainer, FormResolveTypeEnum) instead.")]
[ObsoleteSince(28, 0)]
public static bool EnsureDefaultValues(string className, IDataContainer container, FormResolveTypeEnum resolveType = FormResolveTypeEnum.None)

Parameters

className string

Class name

container IDataContainer

Data container

resolveType FormResolveTypeEnum

Type of macro resolving

Returns

bool

Returns TRUE if at least one default value was ensured.

GetBasicFormDefinition(string)

Returns basic form definition of the table with primary key only.

public static FormInfo GetBasicFormDefinition(string primaryKey)

Parameters

primaryKey string

Primary key name.

Returns

FormInfo

GetBizFormFilesFolderPath(string)

Returns BizForm files folder physical path according to 'CMSBizFormFilesFolder' settings key.

public static string GetBizFormFilesFolderPath(string webFullPath = null)

Parameters

webFullPath string

Physical path to the root of the web project (e.g. c:\WebProject). If it is not specified the web application physical path is used.

Returns

string

GetBizFormTempFilesFolderPath(string)

Gets BizForm temporary files folder physical path based on GetTempFilesRootFolderPath(string).

public static string GetBizFormTempFilesFolderPath(string webFullPath = null)

Parameters

webFullPath string

Physical path to the root of the web project (e.g. c:\WebProject). If it is not specified the web application physical path is used.

Returns

string

Returns folder path for form's temporary files.

GetDateTimeValueInSystemCulture(string, CultureInfo)

Gets date-time value in system (en) culture format.

public static string GetDateTimeValueInSystemCulture(string value, CultureInfo culture)

Parameters

value string

Value to be converted

culture CultureInfo

Culture used for value string formating.

Returns

string

GetDateValueInSystemCulture(string, CultureInfo)

Gets date value in system (en) culture format.

public static string GetDateValueInSystemCulture(string value, CultureInfo culture)

Parameters

value string

Value to be converted

culture CultureInfo

Culture used for value string formating.

Returns

string

GetDecimalValueInSystemCulture(string, CultureInfo)

Gets decimal value in system (en) culture format.

public static string GetDecimalValueInSystemCulture(string value, CultureInfo culture)

Parameters

value string

Value to be converted

culture CultureInfo

Culture used for value string formating.

Returns

string

GetDoubleValueInSystemCulture(string, CultureInfo)

Gets double value in system (en) culture format.

public static string GetDoubleValueInSystemCulture(string value, CultureInfo culture)

Parameters

value string

Value to be converted

culture CultureInfo

Culture used for value string formating.

Returns

string

GetFilePhysicalPath(string, string)

Gets path to the file in file system.

public static string GetFilePhysicalPath(string fileName, string webFullPath = null)

Parameters

fileName string

File name

webFullPath string

Physical path to the root of the web project (e.g. c:\WebProject), if it is not specified web application physical path is used

Returns

string

Physical path

GetFormDefinitionDifference(string, string, bool)

Returns XML differences between original and alternative form definitions (i.e. returns only fields that differs from each other)

public static string GetFormDefinitionDifference(string original, string alternative, bool includeAllAltFields = false)

Parameters

original string

Default/original form definition

alternative string

Alternative form definition

includeAllAltFields bool

If true, result will contain even those fields which are not in the original definition

Returns

string

GetFormInfo(string, bool, bool, bool)

Returns FormInfo object for specified class name or alternative name. Method loops through supplied class list and returns first object existing. If alternative name is specified then it is merged with default class and then returned If coupled class exists for given alternative form then it is merged as well. If alternative form info not found then its default class is returned. You can also merge two forms in the result by using the + operator between names, such as "customtable.sampletable.filter+customtable.sampletable.extra"

public static FormInfo GetFormInfo(string classes, bool clone, bool fallbackToDefault = true, bool onlyVisible = false)

Parameters

classes string

Class names or alternative names separated by semicolon

clone bool

When returned FormInfo is used only for reading then cloning can be set to FALSE

fallbackToDefault bool

If true and alternative form is not found, the process attempts to fall back to the class default form

onlyVisible bool

If true, only visible fields are provided in the result. This also removes any empty categories in the form (considering them invisible).

Returns

FormInfo

Null if no FormInfo found for any of the specified classes. Otherwise returns first FormInfo which was found.

GetGuidFileName(string)

Returns file name in format [guid].[extension].

[Obsolete("Method is deprecated and will be removed in the next version.")]
[ObsoleteSince(28, 0)]
public static string GetGuidFileName(string fileNamesString)

Parameters

fileNamesString string

File names from database in format "[guid].[extension]/[originalfilename].[extension]"

Returns

string

GetOriginalFileName(string)

Returns file name in format [OriginalFileName].[extension].

[Obsolete("Method is deprecated and will be removed in the next version.")]
[ObsoleteSince(28, 0)]
public static string GetOriginalFileName(string fileNamesString)

Parameters

fileNamesString string

File names from database in format "[guid].[extension]/[originalfilename].[extension]"

Returns

string

GetPropertyMacroTransformation(IDictionary)

Returns a transformation action. If given macro table contains key passed to the action (second action parameter), it replaces current value (third action parameter) in the element passed to the action (first action parameter) and adds "ismacro" attribute to the element.

public static Action<XmlElement, string, object> GetPropertyMacroTransformation(IDictionary macroTable)

Parameters

macroTable IDictionary

Macro table for the properties.

Returns

Action<XmlElement, string, object>

LoadDefaultValues(string, IDataContainer, FormResolveTypeEnum)

Loads the default class values to the Data container.

public static void LoadDefaultValues(string className, IDataContainer container, FormResolveTypeEnum resolveType = FormResolveTypeEnum.None)

Parameters

className string

Class name

container IDataContainer

Data container

resolveType FormResolveTypeEnum

Type of macro resolving

MergeFormDefinitions(string, string, bool)

Merges original and alternative form definitions and returns the result.

public static string MergeFormDefinitions(string original, string alternative, bool includeAllAltFields = true)

Parameters

original string

Default/original form definition

alternative string

Alternative form definition (just differences from original)

includeAllAltFields bool

If true, result will contain even those fields which are not in the original definition (optional, default value is true)

Returns

string

RemoveFieldFromAlternativeDefinition(string, string, int)

Removes field from alternative definition and keeps order of other items.

public static string RemoveFieldFromAlternativeDefinition(string formDefinition, string fieldName, int order)

Parameters

formDefinition string

Form definition from which the item will be removed

fieldName string

Name of field which will be removed

order int

Item order in original form

Returns

string

RemoveFieldFromAlternativeForms(DataClassInfo, string, int)

Removes field from alternative forms belonging to given class.

public static void RemoveFieldFromAlternativeForms(DataClassInfo formClassInfo, string fieldName, int order)

Parameters

formClassInfo DataClassInfo

Class with alternative forms

fieldName string

Name of the deleted field

order int

Order of deleted field in class