Skip to content
Snippets Groups Projects
Commit 0a7b3e6d authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2822975 by tedbow: Clean up unused portions of offcanvas_test module

parent e6bc96b3
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
<?php
namespace Drupal\offcanvas_test\Plugin\Block;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\Url;
/**
* Provides an 'Off-canvas test block' block.
*
* @Block(
* id = "offcanvas_links_block",
* admin_label = @Translation("Off-canvas test block")
* )
*/
class TestBlock extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
return [
'offcanvas_link_1' => [
'#title' => $this->t('Click Me 1!'),
'#type' => 'link',
'#url' => Url::fromRoute('offcanvas_test.thing1'),
'#attributes' => [
'class' => ['use-ajax'],
'data-dialog-type' => 'offcanvas',
],
],
'offcanvas_link_2' => [
'#title' => $this->t('Click Me 2!'),
'#type' => 'link',
'#url' => Url::fromRoute('offcanvas_test.thing2'),
'#attributes' => [
'class' => ['use-ajax'],
'data-dialog-type' => 'offcanvas',
],
],
'#attached' => [
'library' => [
'outside_in/drupal.off_canvas',
],
],
];
}
}
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