Skip to content
Snippets Groups Projects
Commit e9b49d09 authored by Eric Smith's avatar Eric Smith
Browse files

#3395433 GitLab CI

parent 7f334dff
No related branches found
1 merge request!9#3395433 GitLab CI
Pipeline #38544 passed
# View these include files at https://git.drupalcode.org/project/gitlab_templates/
include:
- project: $_GITLAB_TEMPLATES_REPO
ref: $_GITLAB_TEMPLATES_REF
file:
- '/includes/include.drupalci.main.yml'
- '/includes/include.drupalci.variables.yml'
- '/includes/include.drupalci.workflows.yml'
variables:
_TARGET_CORE: "9.5.10"
......@@ -10,9 +10,7 @@
}
],
"require": {
"php": ">=7.2",
"drupal/core": "^8.7.7 || ^9",
"drupal/purge": "^3.0.0-beta9"
"drupal/purge": "^3.4"
},
"extra": {
"branch-alias": {
......
# Schema for the configuration files of the purge_queuer_url module.
# Schema for the configuration files of the purge_queuer_url module.
purge_queuer_url.settings:
type: config_object
label: 'purge_queuer_url settings.'
......
......@@ -152,7 +152,7 @@ class ConfigurationForm extends QueuerConfigFormBase {
if (!isset($form['blacklist']['blacklist'][$delta])) {
$element = [
'#type' => 'textfield',
'#default_value' => isset($blacklist[$delta]) ? $blacklist[$delta] : '',
'#default_value' => $blacklist[$delta] ?? '',
];
$form['blacklist']['blacklist'][$delta] = $element;
}
......
<?php
namespace Drupal\Tests\purge_queuer_url\Functional;
namespace Drupal\Tests\purge_queuer_url\FunctionalJavascript;
use Drupal\purge_queuer_url\Form\ConfigurationForm;
use Drupal\Tests\purge_ui\Functional\Form\Config\QueuerConfigFormTestBase;
use Drupal\Tests\purge_ui\FunctionalJavascript\Form\Config\QueuerConfigFormTestBase;
/**
* Tests \Drupal\purge_queuer_url\Form\ConfigurationForm.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment