2020-09-16 00:14:44 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\controllers;
|
|
|
|
|
2020-09-16 21:32:33 +07:00
|
|
|
use Yii;
|
|
|
|
use app\Dumper;
|
2020-09-16 00:14:44 +07:00
|
|
|
|
|
|
|
class DumpController extends \yii\console\Controller
|
|
|
|
{
|
|
|
|
public function actionIndex($link, $depth = 0, $buffer = 0, $force = false, $searchExternal = false, $path = '')
|
|
|
|
{
|
2020-09-16 21:32:33 +07:00
|
|
|
(new Dumper)->download($link, $depth, $buffer, $force, $searchExternal, $path);
|
2020-09-16 00:14:44 +07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|