1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
if (!function_exists('backpack_url')) { |
4
|
|
|
/** |
5
|
|
|
* Appends the configured backpack prefix and returns |
6
|
|
|
* the URL using the standard Laravel helpers. |
7
|
|
|
* |
8
|
|
|
* @param $path |
9
|
|
|
* |
10
|
|
|
* @return string |
11
|
|
|
*/ |
12
|
|
|
function backpack_url($path = null, $parameters = [], $secure = null) |
|
|
|
|
13
|
|
|
{ |
14
|
|
|
$path = !$path || (substr($path, 0, 1) == '/') ? $path : '/'.$path; |
15
|
|
|
|
16
|
|
|
return url(config('backpack.base.route_prefix', 'admin').$path, $parameters = [], $secure = null); |
17
|
|
|
} |
18
|
|
|
} |
19
|
|
|
|
20
|
|
|
if (!function_exists('backpack_authentication_column')) { |
21
|
|
|
/** |
22
|
|
|
* Return the username column name. |
23
|
|
|
* The Laravel default (and Backpack default) is 'email'. |
24
|
|
|
* |
25
|
|
|
* @return string |
26
|
|
|
*/ |
27
|
|
|
function backpack_authentication_column() |
28
|
|
|
{ |
29
|
|
|
return config('backpack.base.authentication_column', 'email'); |
30
|
|
|
} |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
if (!function_exists('backpack_users_have_email')) { |
34
|
|
|
/** |
35
|
|
|
* Check if the email column is present on the user table. |
36
|
|
|
* |
37
|
|
|
* @return string |
38
|
|
|
*/ |
39
|
|
|
function backpack_users_have_email() |
40
|
|
|
{ |
41
|
|
|
$user_model_fqn = config('backpack.base.user_model_fqn'); |
42
|
|
|
$user = new $user_model_fqn(); |
43
|
|
|
|
44
|
|
|
return \Schema::hasColumn($user->getTable(), 'email'); |
45
|
|
|
} |
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
if (!function_exists('backpack_avatar_url')) { |
49
|
|
|
/** |
50
|
|
|
* Returns the avatar URL of a user. |
51
|
|
|
* |
52
|
|
|
* @param $user |
53
|
|
|
* |
54
|
|
|
* @return string |
55
|
|
|
*/ |
56
|
|
|
function backpack_avatar_url($user) |
57
|
|
|
{ |
58
|
|
|
$placeholder = 'https://placehold.it/160x160/00a65a/ffffff/&text='.$user->name[0]; |
59
|
|
|
|
60
|
|
|
switch (config('backpack.base.avatar_type')) { |
61
|
|
|
case 'gravatar': |
62
|
|
|
if (backpack_users_have_email()) { |
63
|
|
|
return Gravatar::fallback('https://placehold.it/160x160/00a65a/ffffff/&text='.$user->name[0])->get($user->email); |
64
|
|
|
} else { |
65
|
|
|
return $placeholder; |
66
|
|
|
} |
67
|
|
|
break; |
|
|
|
|
68
|
|
|
|
69
|
|
|
case 'placehold': |
70
|
|
|
return $placeholder; |
71
|
|
|
break; |
|
|
|
|
72
|
|
|
|
73
|
|
|
default: |
74
|
|
|
return method_exists($user, config('backpack.base.avatar_type')) ? $user->{config('backpack.base.avatar_type')}() : $user->{config('backpack.base.avatar_type')}; |
75
|
|
|
break; |
|
|
|
|
76
|
|
|
} |
77
|
|
|
} |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
if (!function_exists('backpack_middleware')) { |
81
|
|
|
/** |
82
|
|
|
* Return the key of the middleware used across Backpack. |
83
|
|
|
* That middleware checks if the visitor is an admin. |
84
|
|
|
* |
85
|
|
|
* @param $path |
86
|
|
|
* |
87
|
|
|
* @return string |
88
|
|
|
*/ |
89
|
|
|
function backpack_middleware() |
90
|
|
|
{ |
91
|
|
|
return config('backpack.base.middleware_key', 'admin'); |
92
|
|
|
} |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
if (!function_exists('backpack_guard_name')) { |
96
|
|
|
/* |
97
|
|
|
* Returns the name of the guard defined |
98
|
|
|
* by the application config |
99
|
|
|
*/ |
100
|
|
|
function backpack_guard_name() |
101
|
|
|
{ |
102
|
|
|
return config('backpack.base.guard', config('auth.defaults.guard')); |
103
|
|
|
} |
104
|
|
|
} |
105
|
|
|
|
106
|
|
|
if (!function_exists('backpack_auth')) { |
107
|
|
|
/* |
108
|
|
|
* Returns the user instance if it exists |
109
|
|
|
* of the currently authenticated admin |
110
|
|
|
* based off the defined guard. |
111
|
|
|
*/ |
112
|
|
|
function backpack_auth() |
113
|
|
|
{ |
114
|
|
|
return \Auth::guard(backpack_guard_name()); |
115
|
|
|
} |
116
|
|
|
} |
117
|
|
|
|
118
|
|
|
if (!function_exists('backpack_user')) { |
119
|
|
|
/* |
120
|
|
|
* Returns back a user instance without |
121
|
|
|
* the admin guard, however allows you |
122
|
|
|
* to pass in a custom guard if you like. |
123
|
|
|
*/ |
124
|
|
|
function backpack_user() |
125
|
|
|
{ |
126
|
|
|
return backpack_auth()->user(); |
127
|
|
|
} |
128
|
|
|
} |
129
|
|
|
|
130
|
|
|
if (!function_exists('mb_ucfirst')) { |
131
|
|
|
/** |
132
|
|
|
* Capitalize the first letter of a string, |
133
|
|
|
* even if that string is multi-byte (non-latin alphabet). |
134
|
|
|
* |
135
|
|
|
* @param string $string String to have its first letter capitalized. |
136
|
|
|
* @param encoding $encoding Character encoding |
137
|
|
|
* |
138
|
|
|
* @return string String with first letter capitalized. |
139
|
|
|
*/ |
140
|
|
|
function mb_ucfirst($string, $encoding = false) |
141
|
|
|
{ |
142
|
|
|
$encoding = $encoding ? $encoding : mb_internal_encoding(); |
143
|
|
|
|
144
|
|
|
$strlen = mb_strlen($string, $encoding); |
145
|
|
|
$firstChar = mb_substr($string, 0, 1, $encoding); |
146
|
|
|
$then = mb_substr($string, 1, $strlen - 1, $encoding); |
147
|
|
|
|
148
|
|
|
return mb_strtoupper($firstChar, $encoding).$then; |
149
|
|
|
} |
150
|
|
|
} |
151
|
|
|
|
152
|
|
|
if (!function_exists('backpack_view')) { |
153
|
|
|
/** |
154
|
|
|
* Returns a new displayable view based on the current configured backpack. |
155
|
|
|
* |
156
|
|
|
* @param string (see config/backpack/base.php) |
157
|
|
|
* |
158
|
|
|
* @return string |
159
|
|
|
*/ |
160
|
|
|
function backpack_view($view) |
161
|
|
|
{ |
162
|
|
|
$theme = config('backpack.base.view_namespace'); |
163
|
|
|
$originalTheme = 'backpack::'; |
164
|
|
|
|
165
|
|
|
if (is_null($theme)) { |
166
|
|
|
$theme = $originalTheme; |
167
|
|
|
} |
168
|
|
|
|
169
|
|
|
$returnView = $theme.$view; |
170
|
|
|
|
171
|
|
|
if (!view()->exists($returnView)) { |
|
|
|
|
172
|
|
|
$returnView = $originalTheme.$view; |
173
|
|
|
} |
174
|
|
|
|
175
|
|
|
return $returnView; |
176
|
|
|
} |
177
|
|
|
} |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.