Files
c-cms-legacy/app/Http/Controllers/ConfigController.php
Lagacé Mathieu 48d998ec67 3.2.4 fix
2019-12-10 10:27:44 -05:00

150 lines
3.5 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Config;
use Illuminate\Http\Request;
class ConfigController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
clogNav('consulte les configurations');
return view ('admin.configs.general',['configs' => Config::all()]);
}
public function customisation()
{
return view ('admin.configs.perso',['configs' => Config::all()]);
}
public function customisationUpdate()
{
$configs = [
'public_index_img_url'
];
foreach ($configs as $config) {
$c = \App\Config::all()->where('name',$config)->first();
$c->data = [request($config)];
$c->save();
}
clog('edit','success','a modifié la configuration');
return redirect('/admin/config/customisation')->with('success','Modification sauvegarder avec succès !');
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Config $config
* @return \Illuminate\Http\Response
*/
public function show(Config $config)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Config $config
* @return \Illuminate\Http\Response
*/
public function edit(Config $config)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Config $config
* @return \Illuminate\Http\Response
*/
public function update()
{
$configs = [
'is_schedule_public',
'is_schedule_build',
'escadron_name_full',
'escadron_name_short',
'escadron_number',
'escadron_phone',
'escadron_element',
'element_title',
'escadron_address',
'escadron_direct_googlemap_link',
'media_facebook',
'media_twitter',
'media_instagram',
'media_email',
];
foreach ($configs as $config) {
$c = \App\Config::all()->where('name',$config)->first();
$c->data = [request($config)];
$c->save();
}
clog('edit','success','a modifié la configuration');
return redirect('/admin/config')->with('success','Modification sauvegarder avec succès !');
}
/**
* Remove the specified resource from storage.
*
* @param \App\Config $config
* @return \Illuminate\Http\Response
*/
public function destroy(Config $config)
{
//
}
public function showfilesConfig()
{
return view('admin.configs.file',['configs' => Config::all()]);
}
public function editfilesConfig()
{
$config = \App\Config::all()->where('name','cadet_list')->first();
$config->data = [\request('cadet_list')];
$config->save();
clog('edit','success','a modifié la configuration');
return redirect('/admin/config/files')->with('success','Modification sauvegarder avec succès !');
}
}