Skip to content

Commit

Permalink
Minor doc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
vin0401 committed May 17, 2024
1 parent c6b0225 commit 630e4fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/07_SDK_Overview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ There are some essential parts that we want to explain in more detail.

### Plugin Architecture

Overview how a plugin would be integrated in the Pimcore Studio Core lifecycle
Overview how a plugin would be integrated in the Pimcore Studio Core lifecycle:

![Plugin architecture](./../img/plugin-architecture.jpg)

Expand Down Expand Up @@ -38,7 +38,7 @@ onStartup: ({ moduleSystem }): void => {

### Modules

Modules consist of straightforward code snippets executed immediately after initializing all services from the Studio UI Core and Plugins. They run before the initial app render, enabling you to leverage existing services (such as a tab manager) to provide additional configuration for React components during rendering. For instance, you could register a new tab for a folder asset:
Modules consist of code snippets executed immediately after initializing all services from the Studio UI Core and Plugins. They run before the initial app render, enabling you to leverage existing services (such as a tab manager) to provide additional configuration for React components during rendering. For instance, you could register a new tab for a folder asset:

``` typescript
export const ImageSliderModule: AbstractModule = {
Expand Down Expand Up @@ -74,7 +74,7 @@ tabManager.register({
})
```

To maximize the benefits of your services, we’ve introduced a service container using [Inversify](https://github.com/inversify/InversifyJS). This container is created early in the application lifecycle, ensuring accessibility throughout the entire app.
To maximize the benefits of services, we’ve introduced a service container using [Inversify](https://github.com/inversify/InversifyJS). This container is created early in the application lifecycle, ensuring accessibility throughout the entire app.

#### source

Expand Down

0 comments on commit 630e4fa

Please sign in to comment.