承接 prestashop/module-lib-service-container 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

prestashop/module-lib-service-container

最新稳定版本:v2.0

Composer 安装命令:

composer require prestashop/module-lib-service-container

包简介

Service container to use on prestashop modules

README 文档

README

This repository includes the service container from Symfony that you can use in your PrestaShop Module.

Pre-requisites

You should install this library only on a PrestaShop environment and with PHP 5.6.0 minimum.

Installation

# PrestaShop 1.7+
composer require prestashop/module-lib-service-container

# PrestaShop 1.6
composer require prestashop/module-lib-service-container
composer require symfony/config:^3.4 symfony/dependency-injection:^3.4 symfony/expression-language:^3.4 symfony/yaml:^3.4

When this project is successfully added to your dependencies, you can add the new ServiceContainer to your module and use it. PrestaShop runs with Symfony components from version 1.7, so dependancies are not required anymore here. I you plan to run your module on PrestaShop, Symfony dependencies must be required separately.

Usage

To use this library, it's simple :

  • First, declare your new service Container in your root module PHP file (like mymodule.php at your root project folder) :
    /**
     * @var ServiceContainer
     */
    private $serviceContainer;
  • And instantiate it in the constructor with the module name and its local path :
$this->serviceContainer = new ServiceContainer($this->name, $this->getLocalPath());
  • You can add a new function on your root module PHP file, like getService, to retrieve your service name in the new service container :
    /**
     * @param string $serviceName
     *
     * @return mixed
     */
    public function getService($serviceName)
    {
        return $this->serviceContainer->getService($serviceName);
    }
  • Then, you have to declare your service in the services.yml file. You must declare your services in the config/ folder. From Symfony 4, services must be explicitely declared as public to be loaded with the method getService();

We split the services in two folders in the config : /front and /admin folders. So the tree should be like :

/mymodule
    /config
        /front
            services.yml
        /admin
            services.yml
        common.yml
  • Of course, you can include a common file, with common services that are use in front and admin project by an import in the services.yml file :
imports:
  - { resource: ../common.yml }

Now you can add your services in the services.yml like you were in a Symfony project ;)

统计信息

  • 总下载量: 159.09k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 1
  • 依赖项目数: 4
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 4
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: AFL-3.0
  • 更新时间: 2020-09-08