mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 19:22:10 -05:00
26 lines
667 B
PHP
26 lines
667 B
PHP
<?php namespace Visiosoft\StyleSelectorModule;
|
|
|
|
use Anomaly\Streams\Platform\Addon\Module\Module;
|
|
|
|
class StyleSelectorModule extends Module
|
|
{
|
|
protected $navigation = false;
|
|
|
|
protected $icon = 'fa fa-gg';
|
|
|
|
public function getSections()
|
|
{
|
|
return [
|
|
'style_selector' => [
|
|
'buttons' => [
|
|
'detail_settings' => [
|
|
'href' => '/admin/settings/extensions/'.setting_value('visiosoft.module.style_selector::detail'),
|
|
'type' => 'success',
|
|
'icon' => 'fa fa-cog'
|
|
],
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|