Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ebt_basic_button
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
ebt_basic_button
Merge requests
!4
Issue
#3337759
: Merge help session from 1.3 to 1.4 as well
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3337759
: Merge help session from 1.3 to 1.4 as well
issue/ebt_basic_button-3337759:3337759-merge-help-session
into
1.4.x
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
renatog
requested to merge
issue/ebt_basic_button-3337759:3337759-merge-help-session
into
1.4.x
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
1.4.x
1.4.x (base)
and
latest version
latest version
882e09c2
1 commit,
2 years ago
1 file
+
17
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ebt_basic_button.module
+
17
−
0
Options
@@ -4,6 +4,23 @@
* @file
* EBT Basic Button module file.
*/
use
Drupal\Core\Routing\RouteMatchInterface
;
/**
* Implements hook_help().
*/
function
ebt_basic_button_help
(
$route_name
,
RouteMatchInterface
$route_match
)
{
switch
(
$route_name
)
{
// Main module help for the ebt_basic_button.
case
'help.page.ebt_basic_button'
:
$output
=
''
;
$output
.
=
'<h3>'
.
t
(
'About'
)
.
'</h3>'
;
$output
.
=
'<p>'
.
t
(
'EBT modules provide ability to add different blocks in Layout Builder in few clicks.'
)
.
'</p>'
;
return
$output
;
default
:
}
}
/**
* Implements hook_preprocess_paragraph().
Loading