vardot/module-installer-factory
Composer 安装命令:
composer require vardot/module-installer-factory
包简介
Module Installer Factory
README 文档
README
Provides developers with a class for modules installer factory.
This class is working with module_name.info.yml file with any modules key.
Let us have the module_name.info.yml with the following items under install key for example:
name: "Module Name"
description: "Module description."
type: module
core_version_requirement: ^9
dependencies:
- drupal:node
- drupal:editor
- drupal:ckeditor
- drupal:filter
install:
- extlink
- linkit
- anchor_link
So that the installed modules could be disabled in some projects without the need to disable the used module.
It's installed only not a dependency.
How to use the Module Installer Factory Class
1. Require the Package in your root composer.json file
"vardot/module-installer-factory": "~1.0"
Or require the Package in your Project with a command
$ composer require vardot/module-installer-factory:~1.0
2. Add Needed Namespace
Add the following namespace in custom modules or custom installation profiles.
use Vardot\Installer\ModuleInstallerFactory;
Use the following methods in your custom install events
Install a list of modules
Install the list of module in the varbase_core.info.yml
ModuleInstallerFactory::installList('varbase_core');
Arguments for installList method**:**
String$moduleName: The machine name for the module.String$modulesListKey: Optional list key which to get the list of modules from. Default 'install'. It can be changed on managed cases like (managed, when_module_name_enabled)Boolean$setModuleWeight: A flag to auto set the weight of the module after installation of a list of modules.
which is equivalent to:
ModuleInstallerFactory::installList('varbase_core', 'install', TRUE);
Set the weight of the module after installation of the list of modules
To make sure that any hook or event subscriber works after all used modules.
ModuleInstallerFactory::setModuleWeightAfterInstallation('varbase_core', 'install');
Arguments for setModuleWeightAfterInstallation**:**
String$moduleName: The machine name for the module.String$modulesListKey: Optional list key which to get the list of modules from. DefaultArray$modules: Optional list of modules in an array.
To set the weight of the module after listed modules with a selected set of modules for example: If the varbase_core.info.yml file had
set_weight_after:
- ctools
- token
- block_class
even tho if the module did not enable them.
ModuleInstallerFactory::setModuleWeightAfterInstallation('varbase_core', 'set_weight_after');
or can be passed as an array as follows:
ModuleInstallerFactory::setModuleWeightAfterInstallation('varbase_core', '', ['ctools', 'token', 'block_class']);
At this point any hook or event subscriber will be processed after the listed modules.
Import configuration from scaned directory
Example 1: Import all field storage configs
ModuleInstallerFactory::importConfigsFromScanedDirectory('varbase_core', '/^field.storage.*\\.(yml)$/i', 'config/optional');
Example 2: Import all custom settings files from a managed folder in the module.
ModuleInstallerFactory::importConfigsFromScanedDirectory('varbase_security', '/^.*(settings.yml)$/i', 'config/managed');
Import configuration from array list of config files
Example 1: Import configs from a managed config folder
ModuleInstallerFactory::importConfigsFromList('varbase_admin',
[
'views.view.content',
'views.view.user_admin_people',
],
'config/managed');
Arguments for importConfigsFromList method**:**
String$moduleName: The machine name for the module.Array$listOfConfigFiles: The list of config files.String$configDirectory: The config directory which to partial import the list from.
It could be used in some cases to change the default View for the Content or People with multilingual sites or extra filters by other modules. It is important which manage the Assemble components and install installation step.
Example 2: In Use Import of Configs
Having a custom config for a disabled module, which will be Enabled and Disabled many times with development and deployments, but they need to have the basic extra change for config over the default settings or configs for the used module.
/**
* Implements hook_modules_installed().
*/
function varbase_security_modules_installed($modules, $is_syncing) {
if (in_array('security_review', $modules)) {
// The module will be Enabled and Disabled many times
// with development and deployments to production sites.
// But the need to have the basic extra change for config over
// the Security Review default configs.
// -------------------------------------------------
// Managed configs for the Security Review module.
$managed_configs = [
'security_review.settings',
'security_review.check.security_review-admin_permissions',
'security_review.check.security_review-error_reporting',
'security_review.check.security_review-executable_php',
'security_review.check.security_review-failed_logins',
'security_review.check.security_review-field',
'security_review.check.security_review-file_perms',
'security_review.check.security_review-input_formats',
'security_review.check.security_review-private_files',
'security_review.check.security_review-query_errors',
'security_review.check.security_review-temporary_files',
'security_review.check.security_review-trusted_hosts',
'security_review.check.security_review-upload_extensions',
'security_review.check.security_review-views_access',
];
// Import managed configs to the site active configs.
ModuleInstallerFactory::importConfigsFromList('varbase_security', $managed_configs, 'config/managed/security_review');
// Entity updates to clear up any mismatched entity and/or field definitions
// And Fix changes were detected in the entity type and field definitions.
\Drupal::classResolver()
->getInstanceFromDefinition(EntityDefinitionUpdateManager::class)
->applyUpdates();
}
}
vardot/module-installer-factory 适用场景与选型建议
vardot/module-installer-factory 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 163.07k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2022 年 03 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 vardot/module-installer-factory 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 vardot/module-installer-factory 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 163.07k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 14
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2022-03-15