# Label/Info in Pluginkonfiguration

**URL:** https://forum.shopware.com/t/label-info-in-pluginkonfiguration/41755
**Category:** Programmierung
**Created:** [27. November 2016 um 17:26 UTC](https://forum.shopware.com/t/label-info-in-pluginkonfiguration/41755 "2016-11-27T17:26:51Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Gizmo](https://avatars.discourse-cdn.com/v4/letter/g/7feea3/32.png) [@Gizmo](https://forum.shopware.com/u/Gizmo)
#### Post date: [27. November 2016 um 17:26 UTC](https://forum.shopware.com/t/label-info-in-pluginkonfiguration/41755/1 "2016-11-27T17:26:51Z")

</div>

Hallo,

ich beschäftige mich gerade mit dem Thema Plugin-Entwicklung in Shopware. Das Beispiel unter [Plugin configuration](https://developers.shopware.com/developers-guide/plugin-configuration/) habe ich soweit nachvollziehen können.&nbsp;

Was ich nicht gefunden habe, war eine Erklärung um das Fieldset „Beschreibung“ samt Beispielsatz in der Pluginkonfiguration auszugeben (siehe Bild:)

 ![Translate your configuration](https://europe1.discourse-cdn.com/flex013/uploads/shopware/original/2X/4/42f07e599676199bf08d37fca577b3c229ee0d6b.png)

Weiß jemand wie und an welcher Stelle ich diese Angabe definieren kann? Ist das innerhalb der createConfig Funktion oder wird das via ExtJS realisiert?

Mir ist auch bewusst, dass es bereits ein neues Plugin System gibt, aber ich würde mich gerne erstmal an dem „alten“ ausprobieren ![Smile](https://forum.shopware.com/plugins/CKEditor/plugins/smiley/images/smile.png "Smile")

---

<div class="post-metadata">

### Author: ![sschreier](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.shopware.com/sschreier/32/23296_2.png) [@sschreier](https://forum.shopware.com/u/sschreier)
#### Post date: [27. November 2016 um 18:36 UTC](https://forum.shopware.com/t/label-info-in-pluginkonfiguration/41755/2 "2016-11-27T18:36:44Z")

</div>

> [@Gizmo schrieb:](https://forum.shopware.com/profile/25229/Gizmo "Gizmo")
> 
> Hallo,
> 
> ich beschäftige mich gerade mit dem Thema Plugin-Entwicklung in Shopware. Das Beispiel unter [https://developers.shopware.com/developers-guide/plugin-configuration/](https://developers.shopware.com/developers-guide/plugin-configuration/) habe ich soweit nachvollziehen können.&nbsp;
> 
> Was ich nicht gefunden habe, war eine Erklärung um das Fieldset „Beschreibung“ samt Beispielsatz in der Pluginkonfiguration auszugeben (siehe Bild:)
> 
> ![Translate your configuration](https://europe1.discourse-cdn.com/flex013/uploads/shopware/original/2X/4/42f07e599676199bf08d37fca577b3c229ee0d6b.png)
> 
> Weiß jemand wie und an welcher Stelle ich diese Angabe definieren kann? Ist das innerhalb der createConfig Funktion oder wird das via ExtJS realisiert?
> 
> Mir ist auch bewusst, dass es bereits ein neues Plugin System gibt, aber ich würde mich gerne erstmal an dem „alten“ ausprobieren ![Smile](https://forum.shopware.com/plugins/CKEditor/plugins/smiley/images/smile.png "Smile")

Hallo,

steht beides auch in dieser Dokumentation, siehe: [Plugin configuration](https://developers.shopware.com/developers-guide/plugin-configuration/#subshop-specific-plugin-configuration) , also:

```
 public function getInfo()
    {
        return array(
            'label' => $this->getLabel(),
            'version' => $this->getVersion(),
            'description' => 'Beschreibung',
            'link' => 'http://www.shopware.de'
        );
    }

```

Nachschaubar auch bei den ganzen freien Shopware - Plugins, beispielsweise: [https://github.com/shopwareLabs/SwagGoogle/blob/master/Bootstrap.php#L48](https://github.com/shopwareLabs/SwagGoogle/blob/master/Bootstrap.php#L48) .

Beste Grüße

Sebastian

---

<div class="post-metadata">

### Author: ![Gizmo](https://avatars.discourse-cdn.com/v4/letter/g/7feea3/32.png) [@Gizmo](https://forum.shopware.com/u/Gizmo)
#### Post date: [27. November 2016 um 19:33 UTC](https://forum.shopware.com/t/label-info-in-pluginkonfiguration/41755/3 "2016-11-27T19:33:35Z")

</div>

Funktioniert. Vielen Dank für die Hilfe!
