Skip to content

Commit

Permalink
Minor bugfix and typo changes
Browse files Browse the repository at this point in the history
gergo85 authored Jun 16, 2016
1 parent 39e096d commit 79dfd11
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions Plugin.php
Original file line number Diff line number Diff line change
@@ -5,14 +5,14 @@

class Plugin extends PluginBase
{

public function pluginDetails()
{
return [
'name' => 'romanov.flashmessage::lang.plugin.name',
'description' => 'romanov.flashmessage::lang.plugin.description',
'author' => 'Alexander Romanov',
'icon' => 'icon-bullhorn'
'icon' => 'icon-bullhorn',
'homepage' => 'https://github.com/romanov-acc/octobercms_flashmessage'
];
}

@@ -23,21 +23,19 @@ public function registerSettings()
'label' => 'romanov.flashmessage::lang.plugin.name',
'description' => 'romanov.flashmessage::lang.plugin.description',
'icon' => 'icon-bullhorn',
'url' => Backend::url('romanov/flashmessage/settings'),
'url' => Backend::url('romanov/flashmessage/settings'),
'order' => 501,
'category' => 'system::lang.system.categories.cms',
'keywords' => 'flash message',
'homepage' => 'https://github.com/romanov-acc/octobercms_flashmessage'
],
'keywords' => 'flash message'
]
];
}

public function registerComponents()
{
return [
'Romanov\Flashmessage\Components\FlashMessage' => 'flashmessage',
'Romanov\Flashmessage\Components\FormError' => 'formerrormessages',
'Romanov\Flashmessage\Components\FormError' => 'formerrormessages'
];
}

}

0 comments on commit 79dfd11

Please sign in to comment.