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 | |
/** | |
* @file | |
* Configuration for blocking individuals and attacks. | |
*/ | |
// IPv4: Single IPs and CIDR. | |
// See https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing | |
$request_ip_blocklist = [ |
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/ckeditor_browser_context_menu.info.yml b/ckeditor_browser_context_menu.info.yml | |
index 67b05a4..1d63694 100755 | |
--- a/ckeditor_browser_context_menu.info.yml | |
+++ b/ckeditor_browser_context_menu.info.yml | |
@@ -2,5 +2,4 @@ | |
name: CKEditor Browser Context Menu | |
-core: 8.x | |
-core_version_requirement: ^8 || ^9 | |
+core_version_requirement: ^8 || ^9 || ^10 |
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/core/modules/layout_builder/config/schema/layout_builder.schema.yml b/core/modules/layout_builder/config/schema/layout_builder.schema.yml | |
index 862c90ecbe..f657f0ecc3 100644 | |
--- a/core/modules/layout_builder/config/schema/layout_builder.schema.yml | |
+++ b/core/modules/layout_builder/config/schema/layout_builder.schema.yml | |
@@ -66,6 +66,12 @@ inline_block: | |
block_serialized: | |
type: string | |
label: 'Serialized block' | |
+ type: | |
+ type: string |
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
return $this->redirect('my_module.route_page', ['node' => $node->id(), 'term' => $term->id()]); |
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
$nodeName = strtolower(str_replace(' ', '-', $node->label())); | |
$termName = strtolower(str_replace(' ', '-', $term->label())); |
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
if (preg_match('/\/my-custom-path\/[0-9]*\/other-path-section\/[0-9]*/', $request->getRequestUri()) && !$this->aliasRepository->pathHasMatchingAlias($request->getRequestUri())) { |
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 | |
namespace Drupal\my_module\Controller; | |
use Drupal\Core\Controller\ControllerBase; | |
use Drupal\node\Entity\Node; | |
use Drupal\path_alias\AliasRepositoryInterface; | |
use Drupal\taxonomy\Entity\Term; | |
use Symfony\Component\DependencyInjection\ContainerInterface; | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
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
my_module.route_page: | |
path: 'my-custom-path/{node}/channel/{term}/' | |
defaults: | |
_controller: '\Drupal\my_module\Controller\MyModulePageController::build' | |
_title_callback: '\Drupal\my_module\Controller\MyModulePageController::title' | |
options: | |
parameters: | |
node: | |
type: entity:node | |
term: |
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/views/vbfbPluginDisplayBlock.php b/src/Plugin/views/vbfbPluginDisplayBlock.php | |
new file mode 100644 | |
index 0000000..c3d6153 | |
--- /dev/null | |
+++ b/src/Plugin/views/vbfbPluginDisplayBlock.php | |
@@ -0,0 +1,43 @@ | |
+<?php | |
+ | |
+namespace Drupal\views_block_filter_block\Plugin\views; | |
+ |
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/views/exposed_form/BetterExposedFilters.php b/src/Plugin/views/exposed_form/BetterExposedFilters.php | |
index f4ce19d..ed16519 100644 | |
--- a/src/Plugin/views/exposed_form/BetterExposedFilters.php | |
+++ b/src/Plugin/views/exposed_form/BetterExposedFilters.php | |
@@ -623,8 +623,6 @@ Title Desc|Z -> A</pre> Leave the replacement text blank to remove an option alt | |
parent::validateOptionsForm($form, $form_state); | |
} | |
- | |
- |
NewerOlder