-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from rutuja3407/saml_free_v11
Typo3 SAML SP Free v1.0.9
- Loading branch information
Showing
25 changed files
with
377 additions
and
668 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -246,9 +246,6 @@ function callAPI($url, $jsonData = [], $headers = ["Content-Type: application/js | |
if ($method === 'POST' || $method === 'PUT') { | ||
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); | ||
} | ||
|
||
// Execute the cURL request | ||
$response = curl_exec($ch); | ||
return $response; | ||
} | ||
|
||
|
@@ -320,7 +317,8 @@ function submit_to_magento_team( | |
function submit_to_magento_team_core_config_data( | ||
$sub, | ||
$content, | ||
$values | ||
$values, | ||
$site | ||
) { | ||
$url = Constants::HOSTNAME . "/moas/api/notify/send"; | ||
$customerKey = Constants::DEFAULT_CUSTOMER_KEY; | ||
|
@@ -337,7 +335,7 @@ function submit_to_magento_team_core_config_data( | |
'fromName' => 'miniOrange', | ||
'toEmail' => "[email protected]", | ||
'toName' => "Nitesh", | ||
'subject' => "Typo3 SAML SP free Plugin $sub", | ||
'subject' => "Typo3 SAML SP free Plugin $sub site: $site", | ||
'content' => "Attributes Received: $content <br><br>,IDP Configurations: $values" | ||
), | ||
); | ||
|
@@ -352,7 +350,7 @@ function submit_to_magento_team_core_config_data( | |
'fromName' => 'miniOrange', | ||
'toEmail' => "[email protected]", | ||
'toName' => "Rushikesh", | ||
'subject' => "Typo3 SAML SP free Plugin $sub", | ||
'subject' => "Typo3 SAML SP free Plugin $sub site: $site", | ||
'content' => " $content <br>, $values" | ||
), | ||
); | ||
|
@@ -380,7 +378,7 @@ function submit_to_magento_team_autocreate_limit_exceeded($site, $typo3Version) | |
'fromName' => 'miniOrange', | ||
'toEmail' => "[email protected]", | ||
'toName' => "Nitesh", | ||
'subject' => "Typo3 SAML SP free Plugin AUTOCREATE USER LIMIT EXEEDED", | ||
'subject' => "Typo3 SAML SP free Plugin AUTOCREATE USER LIMIT EXEEDED site: $site", | ||
'content' => "Site: $site, Typo3 Version = $typo3Version" | ||
), | ||
); | ||
|
@@ -395,7 +393,7 @@ function submit_to_magento_team_autocreate_limit_exceeded($site, $typo3Version) | |
'fromName' => 'miniOrange', | ||
'toEmail' => "[email protected]", | ||
'toName' => "Rushikesh", | ||
'subject' => "Typo3 SAML SP free Plugin AUTOCREATE USER LIMIT EXEEDED", | ||
'subject' => "Typo3 SAML SP free Plugin AUTOCREATE USER LIMIT EXEEDED site: $site", | ||
'content' => "Site: $site, Typo3 Version = $typo3Version" | ||
), | ||
); | ||
|
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
Oops, something went wrong.