@@ -20,7 +20,7 @@ |
||
| 20 | 20 | $contents = ''; |
| 21 | 21 | if (config('kleis.legal_notice')) { |
| 22 | 22 | $mdfile = public_path('markdown/legal/'.config('kleis.legal_notice').'-'.config('app.locale').'.md'); |
| 23 | - if (file_exists($mdfile)){ |
|
| 23 | + if (file_exists($mdfile)) { |
|
| 24 | 24 | list($title, $text) = explode(PHP_EOL, file_get_contents($mdfile), 2); |
| 25 | 25 | $enable = true; |
| 26 | 26 | $contents = Markdown::parse($text)->toHtml(); |
@@ -13,12 +13,12 @@ |
||
| 13 | 13 | const ACCOUNT_ENABLE = 1; |
| 14 | 14 | |
| 15 | 15 | const ACCOUNT_STATUS = [ |
| 16 | - 0 => [ 'text' => 'accounts.disabled', |
|
| 16 | + 0 => ['text' => 'accounts.disabled', |
|
| 17 | 17 | 'icon' => 'fa-ban', |
| 18 | - 'unicon' => '' ], |
|
| 19 | - 1 => [ 'text' => 'accounts.enabled', |
|
| 18 | + 'unicon' => ''], |
|
| 19 | + 1 => ['text' => 'accounts.enabled', |
|
| 20 | 20 | 'icon' => 'fa-globe', |
| 21 | - 'unicon' => '' ] |
|
| 21 | + 'unicon' => ''] |
|
| 22 | 22 | ]; |
| 23 | 23 | |
| 24 | 24 | const SEARCH_CRITERIA = [ |
@@ -15,27 +15,27 @@ |
||
| 15 | 15 | const USER_ENABLED = 1; |
| 16 | 16 | |
| 17 | 17 | const USER_STATUS = [ |
| 18 | - 0 => [ 'text' => 'users.disabled', |
|
| 18 | + 0 => ['text' => 'users.disabled', |
|
| 19 | 19 | 'icon' => '', |
| 20 | - 'unicon' => '' ], |
|
| 21 | - 1 => [ 'text' => 'users.enabled', |
|
| 20 | + 'unicon' => ''], |
|
| 21 | + 1 => ['text' => 'users.enabled', |
|
| 22 | 22 | 'icon' => 'fa-check', |
| 23 | - 'unicon' => '' ] |
|
| 23 | + 'unicon' => ''] |
|
| 24 | 24 | ]; |
| 25 | 25 | |
| 26 | 26 | const USER_LEVEL = [ |
| 27 | - 1 => [ 'text' => 'users.access.local', |
|
| 27 | + 1 => ['text' => 'users.access.local', |
|
| 28 | 28 | 'icon' => 'fa-support', |
| 29 | - 'unicon' => '' ], |
|
| 30 | - 3 => [ 'text' => 'users.access.global', |
|
| 29 | + 'unicon' => ''], |
|
| 30 | + 3 => ['text' => 'users.access.global', |
|
| 31 | 31 | 'icon' => 'fa-globe', |
| 32 | - 'unicon' => '' ], |
|
| 33 | - 5 => [ 'text' => 'users.access.admin', |
|
| 32 | + 'unicon' => ''], |
|
| 33 | + 5 => ['text' => 'users.access.admin', |
|
| 34 | 34 | 'icon' => 'fa-shield', |
| 35 | - 'unicon' => '' ], |
|
| 36 | - 9 => [ 'text' => 'users.access.super', |
|
| 35 | + 'unicon' => ''], |
|
| 36 | + 9 => ['text' => 'users.access.super', |
|
| 37 | 37 | 'icon' => 'fa-rocket', |
| 38 | - 'unicon' => '' ], |
|
| 38 | + 'unicon' => ''], |
|
| 39 | 39 | ]; |
| 40 | 40 | |
| 41 | 41 | const SEARCH_CRITERIA = [ |
@@ -39,12 +39,12 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | private function accountSummary() |
| 41 | 41 | { |
| 42 | - $list = [ 'total' => 0, 'summary' => []]; |
|
| 42 | + $list = ['total' => 0, 'summary' => []]; |
|
| 43 | 43 | $categories = Category::orderBy('name', 'asc')->get(); |
| 44 | 44 | foreach ($categories as $category) { |
| 45 | 45 | $count = Account::where('category_id', $category->id)->count(); |
| 46 | 46 | if ($count) { |
| 47 | - $list['summary'][]= [ |
|
| 47 | + $list['summary'][] = [ |
|
| 48 | 48 | 'count' => $count, |
| 49 | 49 | 'text' => $category->name |
| 50 | 50 | ]; |
@@ -56,11 +56,11 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | private function groupSummary() |
| 58 | 58 | { |
| 59 | - $list = [ 'total' => 0, 'summary' => []]; |
|
| 59 | + $list = ['total' => 0, 'summary' => []]; |
|
| 60 | 60 | $groups = Group::orderBy('name', 'asc')->get(); |
| 61 | 61 | foreach ($groups as $group) { |
| 62 | 62 | $count = Account::where('group_id', $group->id)->count(); |
| 63 | - $list['summary'][]= [ |
|
| 63 | + $list['summary'][] = [ |
|
| 64 | 64 | 'count' => $count, |
| 65 | 65 | 'text' => $group->name |
| 66 | 66 | ]; |
@@ -71,12 +71,12 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | private function listSummary() |
| 73 | 73 | { |
| 74 | - $list = [ 'total' => 0, 'summary' => [] ]; |
|
| 75 | - $types = [ 'domain', 'url' ]; |
|
| 74 | + $list = ['total' => 0, 'summary' => []]; |
|
| 75 | + $types = ['domain', 'url']; |
|
| 76 | 76 | foreach ($types as $type) { |
| 77 | 77 | $count = ProxyListItem::where('type', $type)->count(); |
| 78 | 78 | if ($count) { |
| 79 | - $list['summary'][]= [ |
|
| 79 | + $list['summary'][] = [ |
|
| 80 | 80 | 'count' => $count, |
| 81 | 81 | 'text' => "{$type}s" |
| 82 | 82 | ]; |
@@ -88,11 +88,11 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | private function userSummary() |
| 90 | 90 | { |
| 91 | - $list = [ 'total' => 0, 'summary' => []]; |
|
| 91 | + $list = ['total' => 0, 'summary' => []]; |
|
| 92 | 92 | foreach (User::USER_LEVEL as $id => $level) { |
| 93 | 93 | $count = User::where('level', $id)->count(); |
| 94 | 94 | if ($count) { |
| 95 | - $list['summary'][]= [ |
|
| 95 | + $list['summary'][] = [ |
|
| 96 | 96 | 'count' => $count, |
| 97 | 97 | 'text' => $level['text'] |
| 98 | 98 | ]; |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | return; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - foreach ($categories as $category){ |
|
| 48 | + foreach ($categories as $category) { |
|
| 49 | 49 | $accounts = $this->fecthAccounts(['category_id' => $category->id]); |
| 50 | 50 | |
| 51 | 51 | $name = normalise($category->name); |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | return; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - foreach ($groups as $group){ |
|
| 48 | + foreach ($groups as $group) { |
|
| 49 | 49 | $accounts = $this->fecthAccounts(['group_id' => $group->id]); |
| 50 | 50 | |
| 51 | 51 | $name = normalise($group->name); |
@@ -122,11 +122,11 @@ |
||
| 122 | 122 | * |
| 123 | 123 | * @return App\Account |
| 124 | 124 | */ |
| 125 | - final protected function fecthAccounts($filter=null) |
|
| 125 | + final protected function fecthAccounts($filter = null) |
|
| 126 | 126 | { |
| 127 | 127 | $query = Account::where('status', Account::ACCOUNT_ENABLE); |
| 128 | 128 | |
| 129 | - if(is_null($filter) === false && is_array($filter)) { |
|
| 129 | + if (is_null($filter) === false && is_array($filter)) { |
|
| 130 | 130 | $query = $query->where($filter); |
| 131 | 131 | } |
| 132 | 132 | |