FileManager

This commit is contained in:
Kevin Adametz 2020-03-07 19:45:39 +01:00
parent c8948338bb
commit f1e0900a7a
131 changed files with 5844 additions and 3081 deletions

View file

@ -8,7 +8,7 @@ use App\Models\IQContentSiteField;
use App\Models\IQContentTree;
use App\Models\IQContentTreeNode;
use App\Models\TravelGuide;
use Input;
use Request;
use Validator;
class ContentLinkController extends Controller
@ -192,7 +192,7 @@ class ContentLinkController extends Controller
public function readNodeAndSaveToTree(){
$input = Input::all();
$input = Request::all();
$ret = [];
if(isset($input['text'])){
$out = $this->ul_to_array($input['text']);
@ -322,7 +322,7 @@ class ContentLinkController extends Controller
$iqContentTree = IQContentTree::find(2);
$this->makeTree($iqContentTree);
$input = Input::all();
$input = Request::all();
$ret = [];
if(isset($input['text'])){