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
No related tags 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 @@ ...@@ -10,9 +10,7 @@
} }
], ],
"require": { "require": {
"php": ">=7.2", "drupal/purge": "^3.4"
"drupal/core": "^8.7.7 || ^9",
"drupal/purge": "^3.0.0-beta9"
}, },
"extra": { "extra": {
"branch-alias": { "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: purge_queuer_url.settings:
type: config_object type: config_object
label: 'purge_queuer_url settings.' label: 'purge_queuer_url settings.'
......
...@@ -152,7 +152,7 @@ class ConfigurationForm extends QueuerConfigFormBase { ...@@ -152,7 +152,7 @@ class ConfigurationForm extends QueuerConfigFormBase {
if (!isset($form['blacklist']['blacklist'][$delta])) { if (!isset($form['blacklist']['blacklist'][$delta])) {
$element = [ $element = [
'#type' => 'textfield', '#type' => 'textfield',
'#default_value' => isset($blacklist[$delta]) ? $blacklist[$delta] : '', '#default_value' => $blacklist[$delta] ?? '',
]; ];
$form['blacklist']['blacklist'][$delta] = $element; $form['blacklist']['blacklist'][$delta] = $element;
} }
......
<?php <?php
namespace Drupal\Tests\purge_queuer_url\Functional; namespace Drupal\Tests\purge_queuer_url\FunctionalJavascript;
use Drupal\purge_queuer_url\Form\ConfigurationForm; 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. * 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