We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -9,76 +9,76 @@ |
||
9 | 9 | |
10 | 10 | class SettingCrudController extends CrudController |
11 | 11 | { |
12 | - public function __construct() |
|
13 | - { |
|
14 | - parent::__construct(); |
|
12 | + public function __construct() |
|
13 | + { |
|
14 | + parent::__construct(); |
|
15 | 15 | |
16 | - $this->crud->setModel("Backpack\Settings\app\Models\Setting"); |
|
17 | - $this->crud->setEntityNameStrings('setting', 'settings'); |
|
18 | - $this->crud->setRoute('admin/setting'); |
|
19 | - $this->crud->denyAccess(['create', 'delete']); |
|
20 | - $this->crud->setColumns(['name', 'value', 'description']); |
|
21 | - $this->crud->addField([ |
|
22 | - 'name' => 'name', |
|
23 | - 'label' => 'Name', |
|
24 | - 'type' => 'text', |
|
25 | - 'disabled' => 'disabled', |
|
26 | - ]); |
|
27 | - } |
|
16 | + $this->crud->setModel("Backpack\Settings\app\Models\Setting"); |
|
17 | + $this->crud->setEntityNameStrings('setting', 'settings'); |
|
18 | + $this->crud->setRoute('admin/setting'); |
|
19 | + $this->crud->denyAccess(['create', 'delete']); |
|
20 | + $this->crud->setColumns(['name', 'value', 'description']); |
|
21 | + $this->crud->addField([ |
|
22 | + 'name' => 'name', |
|
23 | + 'label' => 'Name', |
|
24 | + 'type' => 'text', |
|
25 | + 'disabled' => 'disabled', |
|
26 | + ]); |
|
27 | + } |
|
28 | 28 | |
29 | - /** |
|
30 | - * Display all rows in the database for this entity. |
|
31 | - * This overwrites the default CrudController behaviour: |
|
32 | - * - instead of showing all entries, only show the "active" ones. |
|
33 | - * |
|
34 | - * @return Response |
|
35 | - */ |
|
36 | - public function index() |
|
37 | - { |
|
38 | - // if view_table_permission is false, abort |
|
39 | - $this->crud->hasAccessOrFail('list'); |
|
40 | - $this->crud->addClause('where', 'active', 1); // <---- this is where it's different from CrudController::index() |
|
29 | + /** |
|
30 | + * Display all rows in the database for this entity. |
|
31 | + * This overwrites the default CrudController behaviour: |
|
32 | + * - instead of showing all entries, only show the "active" ones. |
|
33 | + * |
|
34 | + * @return Response |
|
35 | + */ |
|
36 | + public function index() |
|
37 | + { |
|
38 | + // if view_table_permission is false, abort |
|
39 | + $this->crud->hasAccessOrFail('list'); |
|
40 | + $this->crud->addClause('where', 'active', 1); // <---- this is where it's different from CrudController::index() |
|
41 | 41 | |
42 | - $this->data['entries'] = $this->crud->getEntries(); |
|
43 | - $this->data['crud'] = $this->crud; |
|
44 | - $this->data['title'] = ucfirst($this->crud->entity_name_plural); |
|
42 | + $this->data['entries'] = $this->crud->getEntries(); |
|
43 | + $this->data['crud'] = $this->crud; |
|
44 | + $this->data['title'] = ucfirst($this->crud->entity_name_plural); |
|
45 | 45 | |
46 | - // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package |
|
47 | - return view('crud::list', $this->data); |
|
48 | - } |
|
46 | + // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package |
|
47 | + return view('crud::list', $this->data); |
|
48 | + } |
|
49 | 49 | |
50 | - public function store(StoreRequest $request) |
|
51 | - { |
|
52 | - return parent::storeCrud(); |
|
53 | - } |
|
50 | + public function store(StoreRequest $request) |
|
51 | + { |
|
52 | + return parent::storeCrud(); |
|
53 | + } |
|
54 | 54 | |
55 | 55 | |
56 | - /** |
|
57 | - * Show the form for editing the specified resource. |
|
58 | - * |
|
59 | - * @param int $id |
|
60 | - * |
|
61 | - * @return Response |
|
62 | - */ |
|
63 | - public function edit($id) |
|
64 | - { |
|
65 | - $this->crud->hasAccessOrFail('update'); |
|
56 | + /** |
|
57 | + * Show the form for editing the specified resource. |
|
58 | + * |
|
59 | + * @param int $id |
|
60 | + * |
|
61 | + * @return Response |
|
62 | + */ |
|
63 | + public function edit($id) |
|
64 | + { |
|
65 | + $this->crud->hasAccessOrFail('update'); |
|
66 | 66 | |
67 | - $this->data['entry'] = $this->crud->getEntry($id); |
|
68 | - $this->crud->addField((array)json_decode($this->data['entry']->field)); // <---- this is where it's different |
|
69 | - $this->data['crud'] = $this->crud; |
|
70 | - $this->data['fields'] = $this->crud->getUpdateFields($id); |
|
71 | - $this->data['title'] = trans('backpack::crud.edit').' '.$this->crud->entity_name; |
|
67 | + $this->data['entry'] = $this->crud->getEntry($id); |
|
68 | + $this->crud->addField((array)json_decode($this->data['entry']->field)); // <---- this is where it's different |
|
69 | + $this->data['crud'] = $this->crud; |
|
70 | + $this->data['fields'] = $this->crud->getUpdateFields($id); |
|
71 | + $this->data['title'] = trans('backpack::crud.edit').' '.$this->crud->entity_name; |
|
72 | 72 | |
73 | - $this->data['id'] = $id; |
|
73 | + $this->data['id'] = $id; |
|
74 | 74 | |
75 | - // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package |
|
76 | - return view('crud::edit', $this->data); |
|
77 | - } |
|
75 | + // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package |
|
76 | + return view('crud::edit', $this->data); |
|
77 | + } |
|
78 | 78 | |
79 | 79 | |
80 | - public function update(UpdateRequest $request) |
|
81 | - { |
|
82 | - return parent::updateCrud(); |
|
83 | - } |
|
80 | + public function update(UpdateRequest $request) |
|
81 | + { |
|
82 | + return parent::updateCrud(); |
|
83 | + } |
|
84 | 84 | } |