Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
library_generator
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
library_generator
Merge requests
!4
added doc comments
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
added doc comments
issue/library_generator-3371734:1.x
into
1.x
Overview
0
Commits
1
Pipelines
0
Changes
1
Closed
Priya Degwekar
requested to merge
issue/library_generator-3371734:1.x
into
1.x
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Hi, Opened this new MR.
0
0
Merge request reports
Compare
1.x
1.x (base)
and
latest version
latest version
ea3c78ac
1 commit,
1 year ago
1 file
+
9
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
library_generator.module
+
9
−
1
Options
<?php
/**
* @file
* library_generator module file.
*/
/**
* Implements hook_library_info_alter().
*/
function
library_generator_library_info_alter
(
&
$libraries
,
$extension
)
{
$generated_libraries
=
\Drupal
::
service
(
'library_generator.discovery'
)
->
getLibrariesByExtension
(
$extension
);
$libraries
=
array_merge
(
$generated_libraries
,
$libraries
);
}
}
\ No newline at end of file
Loading