指南
- 介绍
- Contribute
- 部署
- 管理
- 高级
内部文档
扩展
- Main 核心概念
- 参考指南
- 进阶指南
- 更新指南
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
控制台
除了 Flarum 核心提供的 默认命令,我们还允许扩展程序的开发者添加自定义控制台命令。
所有控制台命令开发都是在后端使用 PHP 完成的。 要创建自定义控制台命令,您需要创建一个类实现 \Flarum\Console\AbstractCommand
。
use Flarum\Console\AbstractCommand;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
class YourCommand implements AbstractCommand {
protected function configure()
{
$this
->setName('您的命令名')
->setDescription('您的命令描述');
}
protected function fire()
{
// 逻辑实现!
}
}
use Flarum\Extend;
use YourNamespace\Console\CustomCommand;
return [
// 其他扩展器
(new Extend\Console())->command(CustomCommand::class)
// 其他扩展器
];
:::
注册控制台命令
To register console commands, use the Flarum\Extend\Console
extender in your extension's extend.php
file:
use Flarum\Extend;
use YourNamespace\Console\CustomCommand;
return [
// Other extenders
(new Extend\Console())->command(CustomCommand::class)
// Other extenders
];
Scheduled Commands
The Flarum\Extend\Console
's schedule
method allows extension developers to create scheduled commands that run on an interval:
use Flarum\Extend;
use YourNamespace\Console\CustomCommand;
use Illuminate\Console\Scheduling\Event;
return [
// Other extenders
(new Extend\Console())->schedule('cache:clear', function (Event $event) {
$event->everyMinute();
}, ['Arg1', '--option1', '--option2']),
// Other extenders
];
In the callback provided as the second argument, you can call methods on the $event object to schedule on a variety of frequencies (or apply other options, such as only running on one server). See the Laravel documentation for more information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论