2016-03-06 18:52:10 +08:00
|
|
|
<?php namespace BookStack\Http\Controllers;
|
2015-08-30 22:31:16 +08:00
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
2016-12-05 00:51:39 +08:00
|
|
|
use Illuminate\Http\Response;
|
2015-08-30 22:31:16 +08:00
|
|
|
use Setting;
|
|
|
|
|
|
|
|
class SettingController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Display a listing of the settings.
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2016-02-28 03:24:42 +08:00
|
|
|
$this->checkPermission('settings-manage');
|
2015-12-05 22:41:51 +08:00
|
|
|
$this->setPageTitle('Settings');
|
2016-05-04 04:10:05 +08:00
|
|
|
|
|
|
|
// Get application version
|
2016-10-31 01:44:00 +08:00
|
|
|
$version = trim(file_get_contents(base_path('version')));
|
2016-05-04 04:10:05 +08:00
|
|
|
|
|
|
|
return view('settings/index', ['version' => $version]);
|
2015-08-30 22:31:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified settings in storage.
|
2016-03-06 18:52:10 +08:00
|
|
|
* @param Request $request
|
2015-08-30 22:31:16 +08:00
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function update(Request $request)
|
|
|
|
{
|
2016-01-01 01:57:34 +08:00
|
|
|
$this->preventAccessForDemoUsers();
|
2016-02-28 03:24:42 +08:00
|
|
|
$this->checkPermission('settings-manage');
|
2016-01-01 01:57:34 +08:00
|
|
|
|
2015-08-30 22:31:16 +08:00
|
|
|
// Cycles through posted settings and update them
|
2016-03-06 18:52:10 +08:00
|
|
|
foreach ($request->all() as $name => $value) {
|
|
|
|
if (strpos($name, 'setting-') !== 0) continue;
|
2015-08-30 22:31:16 +08:00
|
|
|
$key = str_replace('setting-', '', trim($name));
|
|
|
|
Setting::put($key, $value);
|
|
|
|
}
|
2016-01-01 01:57:34 +08:00
|
|
|
|
2016-12-05 00:51:39 +08:00
|
|
|
session()->flash('success', trans('settings.settings_save_success'));
|
2015-08-30 22:31:16 +08:00
|
|
|
return redirect('/settings');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|