ExtensionConfig.cfc
| Method | Description |
| createStep(string: label, string: decription): ExtensionStep | Creates and links a new step. |
| getSteps(): ExtensionStep[] | Returns all ExtensionSteps of the ExtesnionConfig. |
ExtensionStep.cfc
| Method | Description |
| init(string: label, string: description): ExtensionStep | Initalizes the ExtensionStep CFC. Is called on creation. |
| createGroup(string: label, string: decription): ExtensionStep | Creates and links a new group. |
| getGroups(): ExtensionGroup[] | Returns all ExtensionGroups of the ExtesnionStep. |
| getLabel(): string | Returns the label of the step . |
| getDescription(): string | Returns the description of the step. |
| setLabel(string: label): void | Sets the label |
| setDescription(string: label): void | Sets the description |
ExtensionGroup.cfc
| Method | Description |
| init(string: label, string: description): ExtensionGroup | Initalizes the ExtensionGroup CFC. Is called on creation. |
| createItem(string: type, string: name, string: value, boolean: selected, string: label, string: decription): ExtensionItem | Creates and links a new item. |
| getItems(): ExtensionItem[] | Returns all ExtensionItems of the ExtesnionGroup. |
| getLabel(): string | Returns the label of the group. |
| getDescription(): string | Returns the description of the group. |
| setLabel(string: label): void | Sets the label |
| setDescription(string: label): void | Sets the description |
ExtensionItem.cfc
| Method | Description |
| init(string: type, string: name, string: value, boolean: selected, string: label, string: decription): ExtensionItem | Initalizes the ExtensionItem CFC. Is called on creation. |
| createOption(string: value, boolean: selected, string: label, string: decription): ExtensionOption | Creates and links a new option. |
| getOptions(): ExtensionOption[] | Returns all ExtensionOptions of the ExtesnionItem. |
| getType(): string | Returns the type of the Item. Valid values are:
|
| getName(): string | Returns the name of the item |
| getValue(): string | Returns the value of the item |
| getSelected(): boolean | Returns whether the item is selected or not. Can be used when type is: select,radio,checkbox |
| getLabel(): string | Returns the label of the item |
| getDescription(): string | Returns the description of the item |
| setType(string: type): void | Sets the type of the item. Valid values are:
|
| setName(string: name): void | Sets the name |
| setValue(string: value): void | Sets the value |
| setSelected(boolean: selected): void | Sets whether a certain option should be selected or not. |
| setLabel(string: label): void | Sets the label |
| setDescription(string: label): void | Sets the description |
ExtensionOption.cfc
| Method | Description |
| init(string: value, boolean: selected, string: label, string: decription): ExtensionOption | Initalizes the ExtensionOption CFC. Is called on creation. |
| getValue(): string | Returns the value of the item |
| getSelected(): boolean | Returns whether the item is selected or not. |
| getLabel(): string | Returns the label of the item |
| getDescription(): string | Returns the description of the item |
| setValue(string: value): void | Sets the value of the option |
| setSelected(boolean: selected): void | Sets whether the item is selected or not. |
| setLabel(string: label): void | Sets the label |
| setDescription(string: label): void | Sets the description |