fixed comments

This commit is contained in:
vedatakd 2020-09-17 17:18:20 +03:00
parent 46c0f63193
commit 56957811ca
4 changed files with 9 additions and 11 deletions

View File

@ -44,7 +44,4 @@ return [
'options' => [
'title' => 'Options',
],
'theme_settings' => [
'name' => 'Theme Settings'
],
];

View File

@ -15,12 +15,6 @@ use Visiosoft\AdvsModule\Currency\CurrencyFormat;
class AdvsModulePlugin extends Plugin
{
public $repository;
public function __construct(AdvRepositoryInterface $repository)
{
$this->repository = $repository;
}
/**
* @return array

View File

@ -371,12 +371,12 @@ class AdvsModuleServiceProvider extends AddonServiceProvider
'href' => '/admin/settings/modules/visiosoft.module.advs',
],
'theme_settings' => [
'title' => 'visiosoft.module.advs::section.theme_settings.name',
'title' => 'visiosoft.theme.defaultadmin::section.theme_settings.name',
'href' => url('admin/settings/themes/' . setting_value('streams::standard_theme')),
],
'assets_clear' => [
'title' => 'visiosoft.module.advs::section.assets_clear.name',
'href' => '/admin/assets/clear',
'href' => route('assets_clear'),
],
];

View File

@ -0,0 +1,7 @@
<?php
return [
'theme_settings' => [
'name' => 'Theme Settings'
],
];