callbacks.php 664 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Author: 芸众商城 www.yunzshop.com
  4. * Date: 2017/7/25
  5. * Time: 下午17:08
  6. */
  7. use app\common\events\PluginWasDeleted;
  8. use app\common\events\PluginWasEnabled;
  9. return [
  10. app\common\events\PluginWasEnabled::class => function ($plugins) {
  11. \Artisan::call('migrate', ['--path' => 'plugins/leading-in-order/migrations', '--force' => true]);
  12. Log::info('[leading-in-order] 插件已启用');
  13. },
  14. app\common\events\PluginWasDeleted::class => function ($plugins) {
  15. \Artisan::call('migrate:rollback', ['--path' => 'plugins/leading-in-order/migrations']);
  16. Log::info('[leading-in-order] 插件已禁用');
  17. },
  18. ];