Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drupal Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Composer
plugin
Drupal Environment
Commits
f5e9be7b
Commit
f5e9be7b
authored
1 year ago
by
jurgenhaas
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into 'main'
Merging develop into main See merge request
!89
parents
1b4df6bc
6b4733fe
No related branches found
No related tags found
1 merge request
!89
Merging develop into main
Pipeline
#996537
passed
1 year ago
Stage: test
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
patches/d10.json
+5
-1
5 additions, 1 deletion
patches/d10.json
patches/d9.json
+2
-1
2 additions, 1 deletion
patches/d9.json
src/Handler.php
+4
-1
4 additions, 1 deletion
src/Handler.php
with
11 additions
and
3 deletions
patches/d10.json
+
5
−
1
View file @
f5e9be7b
...
@@ -133,6 +133,9 @@
...
@@ -133,6 +133,9 @@
"drupal/helpdesk_integration"
:
{
"drupal/helpdesk_integration"
:
{
"#3228537 Exception Handling in Service class"
:
"https://git.drupalcode.org/project/helpdesk_integration/-/merge_requests/7.diff"
"#3228537 Exception Handling in Service class"
:
"https://git.drupalcode.org/project/helpdesk_integration/-/merge_requests/7.diff"
},
},
"drupal/http_client_manager"
:
{
"#3385117 Code generator"
:
"https://git.drupalcode.org/project/http_client_manager/-/merge_requests/11.diff"
},
"drupal/inline_entity_form"
:
{
"drupal/inline_entity_form"
:
{
"#3204051 Check access"
:
"https://git.drupalcode.org/project/inline_entity_form/-/merge_requests/14.diff?v=4"
"#3204051 Check access"
:
"https://git.drupalcode.org/project/inline_entity_form/-/merge_requests/14.diff?v=4"
},
},
...
@@ -212,7 +215,8 @@
...
@@ -212,7 +215,8 @@
"#3090673 URL field formatter"
:
"https://www.drupal.org/files/issues/2019-10-29/3090673-2.svg_image_field.Add-support-for-a-URL-image-formatter.patch"
"#3090673 URL field formatter"
:
"https://www.drupal.org/files/issues/2019-10-29/3090673-2.svg_image_field.Add-support-for-a-URL-image-formatter.patch"
},
},
"drupal/tamper"
:
{
"drupal/tamper"
:
{
"#3279973 WordCount plugin"
:
"https://git.drupalcode.org/project/tamper/-/merge_requests/9.diff"
"#3279973 WordCount plugin"
:
"https://git.drupalcode.org/project/tamper/-/merge_requests/9.diff"
,
"#3268276 Timezone plugin"
:
"https://www.drupal.org/files/issues/2023-04-06/0001-Issue-3268276-Reworking-timezones.patch"
},
},
"drupal/taxonomy_machine_name"
:
{
"drupal/taxonomy_machine_name"
:
{
"#3193233 Filter doesn't work"
:
"https://www.drupal.org/files/issues/2021-01-17/taxonomy_machine_name-view-save-error-3193233.patch"
,
"#3193233 Filter doesn't work"
:
"https://www.drupal.org/files/issues/2021-01-17/taxonomy_machine_name-view-save-error-3193233.patch"
,
...
...
This diff is collapsed.
Click to expand it.
patches/d9.json
+
2
−
1
View file @
f5e9be7b
...
@@ -225,7 +225,8 @@
...
@@ -225,7 +225,8 @@
"#3090673 URL field formatter"
:
"https://www.drupal.org/files/issues/2019-10-29/3090673-2.svg_image_field.Add-support-for-a-URL-image-formatter.patch"
"#3090673 URL field formatter"
:
"https://www.drupal.org/files/issues/2019-10-29/3090673-2.svg_image_field.Add-support-for-a-URL-image-formatter.patch"
},
},
"drupal/tamper"
:
{
"drupal/tamper"
:
{
"#3279973 WordCount plugin"
:
"https://git.drupalcode.org/project/tamper/-/merge_requests/9.diff"
"#3279973 WordCount plugin"
:
"https://git.drupalcode.org/project/tamper/-/merge_requests/9.diff"
,
"#3268276 Timezone plugin"
:
"https://www.drupal.org/files/issues/2023-04-06/0001-Issue-3268276-Reworking-timezones.patch"
},
},
"drupal/taxonomy_machine_name"
:
{
"drupal/taxonomy_machine_name"
:
{
"#3193233 Filter doesn't work"
:
"https://www.drupal.org/files/issues/2021-01-17/taxonomy_machine_name-view-save-error-3193233.patch"
,
"#3193233 Filter doesn't work"
:
"https://www.drupal.org/files/issues/2021-01-17/taxonomy_machine_name-view-save-error-3193233.patch"
,
...
...
This diff is collapsed.
Click to expand it.
src/Handler.php
+
4
−
1
View file @
f5e9be7b
...
@@ -139,10 +139,13 @@ class Handler extends BaseHandler {
...
@@ -139,10 +139,13 @@ class Handler extends BaseHandler {
$file
=
$projectRoot
.
'/settings/default/'
.
$template
;
$file
=
$projectRoot
.
'/settings/default/'
.
$template
;
$link
=
$webRoot
.
'/sites/default/'
.
$template
;
$link
=
$webRoot
.
'/sites/default/'
.
$template
;
$rendered
=
$this
->
config
->
render
(
$template
,
file_get_contents
(
$pluginRoot
.
'/templates/'
.
$template
.
'.twig'
));
$rendered
=
$this
->
config
->
render
(
$template
,
file_get_contents
(
$pluginRoot
.
'/templates/'
.
$template
.
'.twig'
));
if
(
file_exists
(
$file
))
{
$fs
->
chmod
(
$file
,
0664
);
}
file_put_contents
(
$file
,
$rendered
);
file_put_contents
(
$file
,
$rendered
);
$rel
=
substr
(
$fs
->
makePathRelative
(
$file
,
$projectRoot
.
'/'
.
$link
),
3
,
-
1
);
$rel
=
substr
(
$fs
->
makePathRelative
(
$file
,
$projectRoot
.
'/'
.
$link
),
3
,
-
1
);
$fs
->
symlink
(
$rel
,
$link
);
$fs
->
symlink
(
$rel
,
$link
);
$fs
->
chmod
(
$file
,
0
66
4
);
$fs
->
chmod
(
$file
,
0
44
4
);
if
(
$this
->
config
->
readValue
(
'chg-acl'
))
{
if
(
$this
->
config
->
readValue
(
'chg-acl'
))
{
$fs
->
chgrp
(
$file
,
$this
->
config
->
readValue
(
'webserver-groupname'
));
$fs
->
chgrp
(
$file
,
$this
->
config
->
readValue
(
'webserver-groupname'
));
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment