Class EmailPlainTextTab
- Namespace
- Kentico.Xperience.Admin.DigitalMarketing.UIPages
- Assembly
- Kentico.Xperience.Admin.DigitalMarketing.dll
Plain text tab of the email's edit page.
[UIPageLocation(PageLocationEnum.SidePanel)]
[UIBreadcrumbs(false)]
public sealed class EmailPlainTextTab : ModelEditPage<EmailPlainTextModel>, IPage
- Inheritance
-
objectEmailPlainTextTab
- Implements
- Inherited Members
- Extension Methods
Constructors
EmailPlainTextTab(IFormItemCollectionProvider, IFormDataBinder, IAuthenticatedUserAccessor, IEmailConfigurationManagerFactory, IContentItemUIDataRetriever, IEmailConfigurationAdminModelRetriever, IEmailConfigurationWorkflowStepRoleArbiter)
Initializes a new instance of the EmailPlainTextTab class.
public EmailPlainTextTab(IFormItemCollectionProvider formItemCollectionProvider, IFormDataBinder formDataBinder, IAuthenticatedUserAccessor authenticatedUserAccessor, IEmailConfigurationManagerFactory emailConfigurationManagerFactory, IContentItemUIDataRetriever contentItemUIDataRetriever, IEmailConfigurationAdminModelRetriever emailConfigurationAdminModelRetriever, IEmailConfigurationWorkflowStepRoleArbiter workflowStepRoleArbiter)
Parameters
formItemCollectionProvider
IFormItemCollectionProviderformDataBinder
IFormDataBinderauthenticatedUserAccessor
IAuthenticatedUserAccessoremailConfigurationManagerFactory
IEmailConfigurationManagerFactorycontentItemUIDataRetriever
IContentItemUIDataRetrieveremailConfigurationAdminModelRetriever
IEmailConfigurationAdminModelRetrieverworkflowStepRoleArbiter
IEmailConfigurationWorkflowStepRoleArbiter
Properties
ApplicationIdentifier
Application identifier.
[PageParameter(typeof(EmailChannelsApplicationModelBinder), typeof(EmailChannelApplication))]
public EmailChannelApplicationUrlIdentifier ApplicationIdentifier { get; set; }
Property Value
ContentLanguageIdentifier
Content language identifier.
[PageParameter(typeof(ContentLanguageModelBinder), typeof(EmailChannelContentLanguage))]
public ContentLanguageUrlIdentifier ContentLanguageIdentifier { get; set; }
Property Value
EmailConfigurationID
ID of the email configuration.
[PageParameter(typeof(IntPageModelBinder), typeof(EmailEditLayout))]
public int EmailConfigurationID { get; set; }
Property Value
- int
Model
Gets edited model that represents the form.
protected override EmailPlainTextModel Model { get; }
Property Value
Methods
ConfigurePage()
Set up page's configuration. Configures the submit action.
public override Task ConfigurePage()
Returns
- Task
GetFormItems()
protected override Task<ICollection<IFormItem>> GetFormItems()
Returns
- Task<ICollection<IFormItem>>
Remarks
Override the method in case when additional set-up of form components is required.
ProcessFormData(EmailPlainTextModel, ICollection<IFormItem>)
Stores the model
and creates a response for the Submit(FormSubmissionCommandArguments) command.
protected override Task<ICommandResponse> ProcessFormData(EmailPlainTextModel model, ICollection<IFormItem> formItems)
Parameters
model
EmailPlainTextModelModel to be stored.
formItems
ICollection<IFormItem>Form items with bound component values.
Returns
- Task<ICommandResponse>
The response to be used for the Submit(FormSubmissionCommandArguments) command.
Submit(FormSubmissionCommandArguments)
Handles the form submit command.
public override Task<ICommandResponse> Submit(FormSubmissionCommandArguments args)
Parameters
args
FormSubmissionCommandArgumentsForm submission arguments.
Returns
- Task<ICommandResponse>
Returns the form submission result.
Remarks
The default implementation calls the SubmitInternal(FormSubmissionCommandArguments, ICollection<IFormItem>, IFormFieldValueProvider) method.
- See Also