|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Encore\Admin\Controllers; |
|
4
|
|
|
|
|
5
|
|
|
use Encore\Admin\Auth\Database\Administrator; |
|
6
|
|
|
use Encore\Admin\Auth\Database\Role; |
|
7
|
|
|
use Encore\Admin\Facades\Admin; |
|
8
|
|
|
use Encore\Admin\Form; |
|
9
|
|
|
use Encore\Admin\Grid; |
|
10
|
|
|
use Encore\Admin\Layout\Content; |
|
11
|
|
|
use Illuminate\Routing\Controller; |
|
12
|
|
|
|
|
13
|
|
|
class UserController extends Controller |
|
14
|
|
|
{ |
|
15
|
|
|
use AdminController; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* Index interface. |
|
19
|
|
|
* |
|
20
|
|
|
* @return Content |
|
21
|
|
|
*/ |
|
22
|
|
View Code Duplication |
public function index() |
|
|
|
|
|
|
23
|
|
|
{ |
|
24
|
|
|
return Admin::content(function (Content $content) { |
|
25
|
|
|
$content->header(trans('admin::lang.administrator')); |
|
|
|
|
|
|
26
|
|
|
$content->description(trans('admin::lang.list')); |
|
|
|
|
|
|
27
|
|
|
$content->body($this->grid()->render()); |
|
28
|
|
|
}); |
|
29
|
|
|
} |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* Edit interface. |
|
33
|
|
|
* |
|
34
|
|
|
* @param $id |
|
35
|
|
|
* |
|
36
|
|
|
* @return Content |
|
37
|
|
|
*/ |
|
38
|
|
|
public function edit($id) |
|
39
|
|
|
{ |
|
40
|
|
|
return Admin::content(function (Content $content) use ($id) { |
|
41
|
|
|
$content->header(trans('admin::lang.administrator')); |
|
|
|
|
|
|
42
|
|
|
$content->description(trans('admin::lang.edit')); |
|
|
|
|
|
|
43
|
|
|
$content->body($this->form()->edit($id)); |
|
44
|
|
|
}); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* Create interface. |
|
49
|
|
|
* |
|
50
|
|
|
* @return Content |
|
51
|
|
|
*/ |
|
52
|
|
|
public function create() |
|
53
|
|
|
{ |
|
54
|
|
|
return Admin::content(function (Content $content) { |
|
55
|
|
|
$content->header(trans('admin::lang.administrator')); |
|
|
|
|
|
|
56
|
|
|
$content->description(trans('admin::lang.create')); |
|
|
|
|
|
|
57
|
|
|
$content->body($this->form()); |
|
58
|
|
|
}); |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* Make a grid builder. |
|
63
|
|
|
* |
|
64
|
|
|
* @return Grid |
|
65
|
|
|
*/ |
|
66
|
|
|
protected function grid() |
|
67
|
|
|
{ |
|
68
|
|
|
return Admin::grid(Administrator::class, function (Grid $grid) { |
|
69
|
|
|
$grid->id('ID')->sortable(); |
|
|
|
|
|
|
70
|
|
|
$grid->username(trans('admin::lang.username')); |
|
|
|
|
|
|
71
|
|
|
$grid->name(trans('admin::lang.name')); |
|
|
|
|
|
|
72
|
|
|
|
|
73
|
|
|
$grid->roles(trans('admin::lang.roles'))->value(function ($roles) { |
|
|
|
|
|
|
74
|
|
|
|
|
75
|
|
|
$roles = array_map(function ($role) { |
|
76
|
|
|
return "<span class='label label-success'>{$role['name']}</span>"; |
|
77
|
|
|
}, $roles); |
|
78
|
|
|
|
|
79
|
|
|
return join(' ', $roles); |
|
80
|
|
|
}); |
|
81
|
|
|
|
|
82
|
|
|
$grid->created_at(trans('admin::lang.created_at')); |
|
|
|
|
|
|
83
|
|
|
$grid->updated_at(trans('admin::lang.updated_at')); |
|
|
|
|
|
|
84
|
|
|
|
|
85
|
|
|
$grid->rows(function($row){ |
|
86
|
|
|
if($row->id == 1) { |
|
87
|
|
|
$row->actions('edit'); |
|
88
|
|
|
} |
|
89
|
|
|
}); |
|
90
|
|
|
}); |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
/** |
|
94
|
|
|
* Make a form builder. |
|
95
|
|
|
* |
|
96
|
|
|
* @return Form |
|
97
|
|
|
*/ |
|
98
|
|
|
public function form() |
|
99
|
|
|
{ |
|
100
|
|
|
return Admin::form(Administrator::class, function (Form $form) { |
|
101
|
|
|
$form->display('id', 'ID'); |
|
102
|
|
|
|
|
103
|
|
|
$form->text('username', trans('admin::lang.username'))->rules('required'); |
|
104
|
|
|
$form->text('name', trans('admin::lang.name'))->rules('required'); |
|
105
|
|
|
$form->password('password', trans('admin::lang.password'))->rules('required'); |
|
106
|
|
|
|
|
107
|
|
|
$form->multipleSelect('roles', trans('admin::lang.roles'))->options(Role::all()->pluck('name', 'id')); |
|
108
|
|
|
|
|
109
|
|
|
$form->display('created_at', trans('admin::lang.created_at')); |
|
110
|
|
|
$form->display('updated_at', trans('admin::lang.updated_at')); |
|
111
|
|
|
|
|
112
|
|
|
$form->saving(function (Form $form) { |
|
113
|
|
|
if ($form->password && $form->model()->password != $form->password) { |
|
|
|
|
|
|
114
|
|
|
$form->password = bcrypt($form->password); |
|
|
|
|
|
|
115
|
|
|
} |
|
116
|
|
|
}); |
|
117
|
|
|
}); |
|
118
|
|
|
} |
|
119
|
|
|
} |
|
120
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.