ADD details in documentation for DepotComponent

Dieser Commit ist enthalten in:
2023-10-06 05:12:27 +02:00
Ursprung c1ec9a62f4
Commit 21c4478d61
2 geänderte Dateien mit 12 neuen und 2 gelöschten Zeilen
+11
Datei anzeigen
@@ -36,6 +36,17 @@ Add the following basic six files:
##### 1. DepotComponent.php
This file contains class for the extension. The class extends MVCComponent.
Compare this version with the original at [Tech Fry Tutorium](https://www.techfry.com/joomla/adding-basic-files-for-component).
```php
namespace KW4NZ\Component\Depot\Administrator\Extension;
use Joomla\CMS\Extension\MVCComponent;
class DepotComponent extends MVCComponent
{
}
```
##### 2. provider.php
This is a special file that tells Joomla how to initialize the component - which
+1 -2
Datei anzeigen
@@ -14,5 +14,4 @@ use Joomla\CMS\Extension\MVCComponent;
class DepotComponent extends MVCComponent
{
}
}