This file contains hidden or 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
| <?php | |
| // Reverse proxy configuration. | |
| $settings['reverse_proxy'] = TRUE; | |
| $settings['reverse_proxy_addresses'] = array($_SERVER['REMOTE_ADDR']); | |
| $settings['reverse_proxy_header'] = 'HTTP_CF_CONNECTING_IP'; | |
| $settings['omit_vary_cookie'] = TRUE; | |
| // Trusted host settings. | |
| $settings['trusted_host_patterns'] = array( |
This file contains hidden or 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
| <?php | |
| /** | |
| * This plugin creates a new paragraph entity based on the source. | |
| * | |
| * @MigrateProcessPlugin( | |
| * id = "mds_paragraph" | |
| * ) | |
| */ | |
| class ParagraphMigrateProcessor extends ParagraphProcessBase { |
This file contains hidden or 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
| Possible values for ext-name: | |
| bcmath | |
| bz2 | |
| calendar | |
| ctype | |
| curl | |
| dba | |
| dom | |
| enchant |
This file contains hidden or 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
| diff --git a/src/Plugin/Field/FieldFormatter/RemoteImageUrlFormatter.php b/src/Plugin/Field/FieldFormatter/RemoteImageUrlFormatter.php | |
| index 8132385..47f0aba 100644 | |
| --- a/src/Plugin/Field/FieldFormatter/RemoteImageUrlFormatter.php | |
| +++ b/src/Plugin/Field/FieldFormatter/RemoteImageUrlFormatter.php | |
| @@ -27,6 +27,11 @@ class RemoteImageUrlFormatter extends LinkFormatter { | |
| $values = $items->getValue(); | |
| foreach ($elements as $delta => $entity) { | |
| + // Patch Pictonio - missing alt warning | |
| + $alt = ''; |
This file contains hidden or 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
| <?php | |
| /* | |
| * Autenticacao.gov :: Exemplo dos atributos pedidos fornecidos | |
| * | |
| * Aplicação de testes: | |
| * https://preprod.autenticacao.gov.pt/cliente/ | |
| * | |
| */ | |
| $config = array( |
This file contains hidden or 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
| <?php | |
| /** | |
| * SAML 2.0 remote IdP metadata for SimpleSAMLphp. | |
| * | |
| * Remember to remove the IdPs you don't use from this file. | |
| * | |
| * See: https://simplesamlphp.org/docs/stable/simplesamlphp-reference-idp-remote | |
| */ | |
| /* |
This file contains hidden or 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
| diff --git a/web/modules/contrib/single_datetime/single_datetime.info.yml b/web/modules/contrib/single_datetime/single_datetime.info.yml | |
| index d3ce4fcbf..0456e64b4 100644 | |
| --- a/web/modules/contrib/single_datetime/single_datetime.info.yml | |
| +++ b/web/modules/contrib/single_datetime/single_datetime.info.yml | |
| @@ -5,6 +5,7 @@ description: Date time picker form element using the xdan jQuery Plugin Date and | |
| dependencies: | |
| - drupal:datetime | |
| + - drupal:datetime_range |
This file contains hidden or 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
| [ | |
| { | |
| "event": "Incêndio Olho Marinho", | |
| "description": "", | |
| "status": "closed", | |
| "details": [ | |
| { | |
| "key": "1", | |
| "date": "16h00 - 15 Outubro", | |
| "title": "Incêndio no Olho Marinho - 2 Frentes", |
This file contains hidden or 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
| diff --git a/simplesamlphp_auth.pages.inc b/simplesamlphp_auth.pages.inc | |
| index 1192529..309368f 100644 | |
| --- a/simplesamlphp_auth.pages.inc | |
| +++ b/simplesamlphp_auth.pages.inc | |
| @@ -25,6 +25,9 @@ function simplesamlphp_auth_loginpage() { | |
| global $_simplesamlphp_auth_saml_attributes; | |
| module_load_include('inc', 'simplesamlphp_auth'); | |
| + // AMA patch - Add extensions to SAML Request | |
| + $params = array(); |
This file contains hidden or 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
| "use strict"; | |
| function update(current,last) { | |
| var xhr = new XMLHttpRequest(); | |
| xhr.open('POST', 'http://192.168.1.5:3030/widgets/visitors', true); | |
| xhr.setRequestHeader('Content-type', 'application/json'); | |
| xhr.send('{ "auth_token": "a1b2c3d4e5f6", "current": ' + current + ', "last": ' + last + '}'); | |
| } | |