Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php namespace Emetophobic\SiteContent;
- use System\Classes\PluginBase;
- class Plugin extends PluginBase
- {
- public function pluginDetails()
- {
- return [
- 'name' => 'emetophobic.sitecontent::lang.plugin.name',
- 'description' => 'emetophobic.sitecontent::lang.plugin.description',
- 'icon' => 'icon-archive',
- 'author' => 'Emetophobic'
- ];
- }
- public function registerComponents()
- {
- return [
- 'Emetophobic\SiteContent\Components\TeamMembers' => 'teamMembers',
- 'Emetophobic\SiteContent\Components\PalmaresLast' => 'palmares',
- 'Emetophobic\SiteContent\Components\PalmaresAll' => 'palmaresAll'
- ];
- }
- public function registerSettings()
- {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement