diff --git a/Documentation/Technical/Campaigns/Workflows.md b/Documentation/Technical/Campaigns/Workflows.md index 9f693717..dbd86998 100644 --- a/Documentation/Technical/Campaigns/Workflows.md +++ b/Documentation/Technical/Campaigns/Workflows.md @@ -84,6 +84,7 @@ Possible actions by default are: * Content manipulation: Hide or show an element of the current page * Content manipulation: Redirect visitor to another page * Content manipulation: Change page title +* Content manipulation: Show lead property on current page * Notification: Sends an email * Notification: Publish a message to a slack channel * Notification: Send an SMS to a mobile number @@ -586,6 +587,23 @@ lib.lux.settings { } } + # Show lead information on the website + 160 { + # Title to show in workflow backend module + title = LLL:EXT:luxenterprise/Resources/Private/Language/locallang_db.xlf:action.leadproperty + + # Classname for implementation of the action itself + className = In2code\Luxenterprise\Domain\Workflow\Action\LeadPropertyAction + + # Templatefile for implementation of the form in workflow module + templateFile = EXT:luxenterprise/Resources/Private/Templates/Workflow/Action/LeadProperty.html + + # Additional configuration + configuration { + # Any configuration - available as array in Template File and Action class for some own magic + } + } + # 200-299 SEND MESSAGES # Action for sending a notification email diff --git a/readme.md b/readme.md index 4573225b..c40999c6 100644 --- a/readme.md +++ b/readme.md @@ -185,6 +185,7 @@ See the full [documentation](Documentation/Index.md) (technical, marketing and p * Content manipulation: Hide or show an element of the current page * Content manipulation: Redirect visitor to another page * Content manipulation: Change page title + * Content manipulation: Show lead property on current page * Notification: Sends an email * Notification: Publish a message to a slack channel * Notification: Send an SMS to a mobile number