-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Update workflow documentation
- Loading branch information
1 parent
6bfb130
commit bc12c2e
Showing
1 changed file
with
4 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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} | ||
} | ||
} | ||
} | ||
|
@@ -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} | ||
} | ||
} | ||
} | ||
|
@@ -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) { | ||
|
@@ -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'); | ||
|
@@ -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); | ||
|