Skip to content
Snippets Groups Projects
Commit aa793a2f authored by Peter Droogmans's avatar Peter Droogmans
Browse files

bug: schema for filters

parent 9324bf1e
No related branches found
No related tags found
No related merge requests found
Pipeline #410044 passed with warnings
mapping: '' mapping: ''
domain_names: ''
...@@ -5,6 +5,11 @@ env_link_fixer.settings: ...@@ -5,6 +5,11 @@ env_link_fixer.settings:
mapping: mapping:
type: string type: string
label: 'Mapping' label: 'Mapping'
filter_settings.env_link_fixer_strip_domain:
type: mapping
label: 'Convert absolute URLs to relative for some domains'
mapping:
domain_names: domain_names:
type: string type: string
label: 'Domain names' label: 'Domain names'
\ No newline at end of file
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
namespace Drupal\env_link_fixer\Plugin\Filter; namespace Drupal\env_link_fixer\Plugin\Filter;
use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Render\Markup;
use Drupal\filter\FilterProcessResult; use Drupal\filter\FilterProcessResult;
use Drupal\filter\Plugin\FilterBase; use Drupal\filter\Plugin\FilterBase;
...@@ -19,6 +18,13 @@ use Drupal\filter\Plugin\FilterBase; ...@@ -19,6 +18,13 @@ use Drupal\filter\Plugin\FilterBase;
*/ */
class RewriteOwnDomainLinks extends FilterBase { class RewriteOwnDomainLinks extends FilterBase {
/**
* {@inheritdoc}
*/
public $settings = [
'domain_names' => '',
];
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
namespace Drupal\Tests\env_link_fixer\Kernel; namespace Drupal\Tests\env_link_fixer\Kernel;
use Drupal\Core\Entity\Entity\EntityViewDisplay; use Drupal\Core\Entity\Entity\EntityViewDisplay;
use Drupal\Tests\field\Kernel\FieldKernelTestBase;
use Drupal\field\Entity\FieldConfig; use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig; use Drupal\field\Entity\FieldStorageConfig;
use Drupal\Tests\field\Kernel\FieldKernelTestBase;
/** /**
* Common functions. * Common functions.
...@@ -104,7 +104,7 @@ class TestBase extends FieldKernelTestBase { ...@@ -104,7 +104,7 @@ class TestBase extends FieldKernelTestBase {
} }
/** /**
* fix data provider keys. * Fix data provider keys.
*/ */
protected function fixProviderKeys(string $prefix, array $tests) : array { protected function fixProviderKeys(string $prefix, array $tests) : array {
$output = []; $output = [];
...@@ -114,4 +114,5 @@ class TestBase extends FieldKernelTestBase { ...@@ -114,4 +114,5 @@ class TestBase extends FieldKernelTestBase {
return $output; return $output;
} }
} }
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