Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
automatic_updates
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
automatic_updates
Merge requests
!210
Issue
#3263865
: Module uninstall form fails because of our shim
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3263865
: Module uninstall form fails because of our shim
issue/automatic_updates-3263865:3263865-module-uninstall-form
into
8.x-2.x
Overview
0
Commits
2
Pipelines
0
Changes
11
Merged
Issue #3263865: Module uninstall form fails because of our shim
Adam G-H
requested to merge
issue/automatic_updates-3263865:3263865-module-uninstall-form
into
8.x-2.x
Feb 11, 2022
Overview
0
Commits
2
Pipelines
0
Changes
11
0
0
Merge request reports
Compare
8.x-2.x
version 5
fb305efd
Feb 11, 2022
version 4
fed01288
Feb 11, 2022
version 3
8fb87bf2
Feb 11, 2022
version 2
76ad61ce
Feb 11, 2022
version 1
3d40ae6f
Feb 11, 2022
8.x-2.x (base)
and
latest version
latest version
fb305efd
2 commits,
Feb 11, 2022
version 5
fb305efd
2 commits,
Feb 11, 2022
version 4
fed01288
1 commit,
Feb 11, 2022
version 3
8fb87bf2
3 commits,
Feb 11, 2022
version 2
76ad61ce
2 commits,
Feb 11, 2022
version 1
3d40ae6f
1 commit,
Feb 11, 2022
11 files
+
67
−
445
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
automatic_updates_9_3_shim/src/ProxyClass/ModuleInstaller.php deleted
100644 → 0
+
0
−
104
View file @ 9793f71c
<?php
// phpcs:ignoreFile
/**
* This file was generated via php core/scripts/generate-proxy-class.php 'Drupal\automatic_updates_9_3_shim\ModuleInstaller' "modules/contrib/automatic_updates/automatic_updates_9_3_shim/src".
*/
namespace
Drupal\automatic_updates_9_3_shim\ProxyClass
{
/**
* Provides a proxy class for \Drupal\automatic_updates_9_3_shim\ModuleInstaller.
*
* @see \Drupal\Component\ProxyBuilder
*/
class
ModuleInstaller
implements
\Drupal\Core\Extension\ModuleInstallerInterface
{
use
\Drupal\Core\DependencyInjection\DependencySerializationTrait
;
/**
* The id of the original proxied service.
*
* @var string
*/
protected
$drupalProxyOriginalServiceId
;
/**
* The real proxied service, after it was lazy loaded.
*
* @var \Drupal\automatic_updates_9_3_shim\ModuleInstaller
*/
protected
$service
;
/**
* The service container.
*
* @var \Symfony\Component\DependencyInjection\ContainerInterface
*/
protected
$container
;
/**
* Constructs a ProxyClass Drupal proxy object.
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* The container.
* @param string $drupal_proxy_original_service_id
* The service ID of the original service.
*/
public
function
__construct
(
\Symfony\Component\DependencyInjection\ContainerInterface
$container
,
$drupal_proxy_original_service_id
)
{
$this
->
container
=
$container
;
$this
->
drupalProxyOriginalServiceId
=
$drupal_proxy_original_service_id
;
}
/**
* Lazy loads the real service from the container.
*
* @return object
* Returns the constructed real service.
*/
protected
function
lazyLoadItself
()
{
if
(
!
isset
(
$this
->
service
))
{
$this
->
service
=
$this
->
container
->
get
(
$this
->
drupalProxyOriginalServiceId
);
}
return
$this
->
service
;
}
/**
* {@inheritdoc}
*/
public
function
addUninstallValidator
(
\Drupal\Core\Extension\ModuleUninstallValidatorInterface
$uninstall_validator
)
{
return
$this
->
lazyLoadItself
()
->
addUninstallValidator
(
$uninstall_validator
);
}
/**
* {@inheritdoc}
*/
public
function
install
(
array
$module_list
,
$enable_dependencies
=
true
)
{
return
$this
->
lazyLoadItself
()
->
install
(
$module_list
,
$enable_dependencies
);
}
/**
* {@inheritdoc}
*/
public
function
uninstall
(
array
$module_list
,
$uninstall_dependents
=
true
)
{
return
$this
->
lazyLoadItself
()
->
uninstall
(
$module_list
,
$uninstall_dependents
);
}
/**
* {@inheritdoc}
*/
public
function
validateUninstall
(
array
$module_list
)
{
return
$this
->
lazyLoadItself
()
->
validateUninstall
(
$module_list
);
}
}
}
Loading