Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1. <?php namespace Emetophobic\SiteContent;
  2.  
  3. use System\Classes\PluginBase;
  4.  
  5. class Plugin extends PluginBase
  6. {
  7.     public function pluginDetails()
  8.     {
  9.         return [
  10.             'name' => 'emetophobic.sitecontent::lang.plugin.name',
  11.             'description' => 'emetophobic.sitecontent::lang.plugin.description',
  12.             'icon' => 'icon-archive',
  13.             'author' => 'Emetophobic'
  14.         ];
  15.     }
  16.  
  17.     public function registerComponents()
  18.     {
  19.         return [
  20.             'Emetophobic\SiteContent\Components\TeamMembers' => 'teamMembers',
  21.             'Emetophobic\SiteContent\Components\PalmaresLast' => 'palmares',
  22.             'Emetophobic\SiteContent\Components\PalmaresAll' => 'palmaresAll'
  23.         ];
  24.     }
  25.  
  26.     public function registerSettings()
  27.     {
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement