MoonShine MoonShine
EN
← All plugins

Scheduling task manager for MoonShine

Scheduling Task Manager for MoonShine
A web interface for managing scheduled tasks within MoonShine, providing intuitive control over task scheduling and execution.

Rating
Downloads
766
Version
2.0.1
Last updated
15.02.2025
MoonShine version
v2
Github stars
7
yurizoom
Author
yurizoom

Scheduling task manager for MoonShine

Веб-интерфейс для управления планировщиком задач в MoonShine.

Скриншот

wx20170809-165644

Установка

$ composer require yurizoom/moonshine-scheduling
$ composer require yurizoom/moonshine-scheduling

Настройка

В файле config/moonshine.php добавьте конфигурации.

[
'scheduling' => [
// Автоматическое добавление в меню
'auto_menu' => true,
]
]
[
'scheduling' => [
// Автоматическое добавление в меню
'auto_menu' => true,
]
]

Добавление в меню

Для того чтобы добавить меню в другое место, вставьте следующий код в app/Providers/MoonShineServiceProvider.php:

use YuriZoom\MoonShineScheduling\Pages\SchedulingPage;
 
protected function menu(): array
{
return [
...
 
MenuItem::make(
static fn () => __('Scheduling'),
new SchedulingPage(),
),
 
...
];
}
use YuriZoom\MoonShineScheduling\Pages\SchedulingPage;
 
protected function menu(): array
{
return [
...
 
MenuItem::make(
static fn () => __('Scheduling'),
new SchedulingPage(),
),
 
...
];
}

Лицензия

The MIT License (MIT).