Download the PHP package it-bens/shopware-code-based-plugin-configuration without Composer

On this page you can find all versions of the php package it-bens/shopware-code-based-plugin-configuration. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package shopware-code-based-plugin-configuration

Shopware Code-Based Plugin Configuration

Tests codecov Static Badge Static Badge Packagist Version Packagist Downloads

Shopware provides an easy way to create a plugin configuration without any implementing any frontend code: https://developer.shopware.com/docs/guides/plugins/plugins/plugin-fundamentals/add-plugin-configuration.html

While the underlying system for the internal configuration generation is very flexible, the config.xml file is the only way to leverage this system. This package aims to provide another method: code-based configuration generation.

Is this a Shopware Plugin?

No. While this package is tied to Shopware, it won't react on any events on it's own. It is meant to be used by a Shopware plugin.

How can add this package in a Shopware plugin?

First, the package has to be installed via composer from packagist:

This can be done in the plugin's composer.json file. But remember to enable composer in the plugin class.

The convenient way

[!TIP] This is the recommended way to register the compiler passes if you don't plan to do modifications on you're own because the helper will always be up-to-date.

This package provides a little helper to register all Symfony compiler passes that are required to use it. It can be added to the plugin's build method.

The manual way

The ConfigurationCardConfigReaderPass will add all the services necessary for the configuration generation to the service container.

Why are the default configuration values missing?

While the mentioned compiler pass is sufficient to generate the plugin configuration at runtime, a convenient feature is missing: default values. The ConfigurationCardConfigSaverPass is required to "hack" into the Shopware plugin configuration persistence.

For detailed information why this is necessary and why the usage is "hacky" look at How does the package work? - Shopware plugin configuration persistence.

What's that "TaggingPass"?

[!NOTE]
Additional information. This is not required if the recommended way of compiler pass registration is used.

This package uses attribute-based tagging of services for the registration of ConfigurationCardProvider implementations. In a normal project, the registration of the attribute for autotagging could be done in the service configuration. In order not bother developers with this, a compiler pass was introduces for that. Unfortunately, the Symfony compiler pass that executes the actual logic of autotagging has a high priority (+100). In order to work correctly, the ConfigurationCardProviderTaggingPass has to be added with an even higher priority and in the first compiler step.

How can I use this package?

Coding the configuration into cards

This package provides classes to define configuration cards (as seen in the Shopware plugin administration).

A ConfigurationCard has a title in english, a title in german and a list of ConfigurationInputField objects. The supported ConfigurationInputField implementations are:

Some of these implementations differ in their required information. But because they mostly require the same information, all require a GeneralFieldInputInformation object. Here is an example for a configuration card with all types of input fields:

Injecting the cards into the configuration

The package uses services that implement the ConfigurationCardProvider interface and use the AsConfigurationCardProvider. Because Shopware uses the same loading mechanism for all plugins, the scope of the ConfigurationCardProvider has to be declared. This is done in the getBundleClasses method of the plugin class.

The providers are sorted with the priority value of the AsConfigurationCardProvider tag. The getPriority method is used to sort the providers if more than one provider is registered for the same plugin.

And finally the getConfigurationCards method is used to return the configuration cards.

How does the package work?

The package decorates the Shopware\Core\System\SystemConfig\Util\ConfigReader service from Shopware. This service is used to read the config.xml file of a plugin. It decodes the XML file into an array. This package keeps the XML-based configuration of plugin and extends it with the data from matching configuration card providers.

The decoration is done via compiler pass in three steps:

  1. all services that implement the ConfigurationCardProvider interface are collected and tagged.
  2. a ConfigurationCardProviderProvider definition is created that receives all services from (1).
  3. the ConfigurationCardConfigReader definition is created with decoration of the Shopware\Core\System\SystemConfig\Util\ConfigReader service and the ConfigurationCardProviderProvider is injected into the ConfigurationCardConfigReader.
  4. the ConfigurationCardConfigReader is set as an alias for the Shopware\Core\System\SystemConfig\Util\ConfigReader service to replace it.

Shopware plugin configuration persistence

Shopware saves plugin configurations in it's database as key-value pairs. When a plugin is installed, Shopware reads the configuration with the Shopware\Core\System\SystemConfig\Util\ConfigReader and persists the default values. However, the services of a plugin are added to the DI container during the plugin activation and not the installation. This means that the service decoration that allows the code-based configuration generation is not used during the installation. Only the default values from the config.xml file are persisted as a result.

This package provides a service subscriber that subscribes to the Shopware PluginPostActivateEvent and the PluginPostUpdateEvent. The service requires the plugin/bundle instance to perform the configuration persistence. The subscriber checks if the configuration persistence is necessary by using the plugin base class from the events the bundle classes defined in the registered ConfigurationCardProvider instances and fetches the plugin instance from the KernelPluginCollectionservice. The compiler pass takes care of the service definition, argument injection and the subscription tagging.

Shopware checks for already persisted configuration values and does not overwrite them. So multiple installations/deinstallations/activations/deactivations of a plugin that uses this package will not reset the configuration values unless the "remove all data" option is used.

The HTTP cache might be reset after the plugin activation. To avoid issues with the newly persisted configuration values, the event subscriber is registered with a priority of 100 to be executed as early as possible (at least earlier before other event subscribers with priority 0).

Contributing

I am really happy that the software developer community loves Open Source, like I do! ♥

That's why I appreciate every issue that is opened (preferably constructive) and every pull request that provides other or even better code to this package.

You are all breathtaking!


All versions of shopware-code-based-plugin-configuration with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
shopware/core Version ^6.5 || ^6.6
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package it-bens/shopware-code-based-plugin-configuration contains the following files

Loading the files please wait ....