Skip to content

Commit

Permalink
[TASK] Update workflow documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Jul 3, 2024
1 parent 6bfb130 commit bc12c2e
Showing 1 changed file with 4 additions and 20 deletions.
24 changes: 4 additions & 20 deletions Documentation/Technical/Campaigns/Workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,8 @@ lib.lux.settings {
configuration {
emailOverrides {
# Override sender settings for SPF-defiance settings (affected only the sender settings - not the reply to settings)
#senderName = Marketing
#senderEmail = [email protected]
senderName = {$plugin.tx_lux.settings.email.defaultSenderName}
senderEmail = {$plugin.tx_lux.settings.email.defaultSenderEmail}
}
}
}
Expand Down Expand Up @@ -751,8 +751,8 @@ lib.lux.settings {
configuration {
emailOverrides {
# Override sender settings for SPF-defiance settings (affected only the sender settings - not the reply to settings)
#senderName = Marketing
#senderEmail = [email protected]
senderName = {$plugin.tx_lux.settings.email.defaultSenderName}
senderEmail = {$plugin.tx_lux.settings.email.defaultSenderEmail}
}
}
}
Expand Down Expand Up @@ -954,15 +954,8 @@ namespace Vendor\Luxextension\Domain\Trigger;
use \In2code\Lux\Domain\Trigger\AbstractTrigger;
use \In2code\Lux\Domain\Trigger\TriggerInterface;
/**
* Class FrontendUserTrigger
*/
class FrontendUserTrigger extends AbstractTrigger implements TriggerInterface
{
/**
* @return void
*/
public function initialize()
{
if ((int)$this->getConfigurationByKey('page') === 0) {
Expand Down Expand Up @@ -1119,14 +1112,8 @@ namespace Vendor\Luxextension\Domain\Action;
use \In2code\Lux\Domain\Action\AbstractAction;
use \In2code\Lux\Domain\Action\ActionInterface;
/**
* Class CurlAction
*/
class CurlAction extends AbstractAction implements ActionInterface
{
/**
* @return bool
*/
public function doAction(): bool
{
$uri = $this->getSettingsByPath('uri');
Expand All @@ -1136,9 +1123,6 @@ class CurlAction extends AbstractAction implements ActionInterface
return $this->sendToUri($uri);
}
/**
* @return bool
*/
protected function sendToUri(string $uri): bool
{
$resource = curl_init($uri);
Expand Down

0 comments on commit bc12c2e

Please sign in to comment.