prestashop/prestashop-accounts-installer
Composer 安装命令:
composer require prestashop/prestashop-accounts-installer
包简介
Utility package to install `ps_accounts` module or present data to trigger manual install from psx configuration page.
README 文档
README
Utility package to install ps_accounts module or present data to trigger manual install from psx configuration page.
This module also give you access to ps_accounts services through its module service container dealing with the installation status of the module.
Compatibility Matrix
We aims to follow partially the Prestashop compatibility charts
| ps_account version | Prestashop Version | PHP Version | Event Bus installation |
|---|---|---|---|
| 6.x | >=8.0.0 | ≥7.2 || ≤8.1 | Yes |
| 5.x | >=1.7.0 || <8.0.0 | ≥5.6 || ≤7.4 | Yes |
| 5.x | >=1.6.1 || <1.7.0 | ≥5.6 || ≤7.4 | No |
Installation
This package is available on Packagist, you can install it via Composer.
composer require prestashop/prestashop-accounts-installer
Register as a service in your PSx container (recommended)
Example :
services: <your_module>.ps_accounts_installer: class: 'PrestaShop\PsAccountsInstaller\Installer\Installer' arguments: - '5.0.0' <your_module>.ps_accounts_facade: class: 'PrestaShop\PsAccountsInstaller\Installer\Facade\PsAccounts' arguments: - '@<your_module>.ps_accounts_installer'
The name under which you register both services in your service container must be unique to avoid collision with other modules including it.
The 5.0.0 specified argument is the minimum required ps_account module version. You should modify it if you need another version.
How to use it
Installer
In your module main class install method. (Will only do something on PrestaShop 1.7 and above)
$this->getService('ps_accounts.installer')->install();
Presenter
For example in your main module's class getContent method.
Media::addJsDef([ 'contextPsAccounts' => $this->getService('ps_accounts.facade') ->getPsAccountsPresenter() ->present($this->name), ]);
This presenter will serve as default minimal presenter and switch to PsAccountsPresenter data when ps_accounts module is installed.
Accessing PsAccounts Services
Installer class includes accessors to get instances of services from PsAccounts Module :
- getPsAccountsService
- getPsBillingService
The methods above will throw an exception in case ps_accounts module is not installed or not in the required version.
Example :
use PrestaShop\PsAccountsInstaller\Installer\Exception\ModuleVersionException; use PrestaShop\PsAccountsInstaller\Installer\Exception\ModuleNotInstalledException; try { $psAccountsService = $this->getService('ps_accounts.facade')->getPsAccountsService(); $shopJwt = $psAccountsService->getOrRefreshToken(); $shopUuid = $psAccountsService->getShopUuid(); $apiUrl = $psAccountsService->getAdminAjaxUrl(); // Your code here } catch (ModuleNotInstalledException $e) { // You handle exception here } catch (ModuleVersionException $e) { // You handle exception here }
prestashop/prestashop-accounts-installer 适用场景与选型建议
prestashop/prestashop-accounts-installer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 150.86k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2021 年 01 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 prestashop/prestashop-accounts-installer 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 prestashop/prestashop-accounts-installer 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 150.86k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 14
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-01-18