17 lines
		
	
	
		
			354 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			354 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace app\controllers;
 | 
						|
 | 
						|
use Yii;
 | 
						|
use app\Dumper;
 | 
						|
 | 
						|
class DumpController extends \yii\console\Controller
 | 
						|
{
 | 
						|
    public function actionIndex($link, $depth = 0, $buffer = 0, $force = false, $searchExternal = false, $path = '')
 | 
						|
    {
 | 
						|
        (new Dumper)->download($link, $depth, $buffer, $force, $searchExternal, $path);
 | 
						|
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
}
 |