Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions config/autoload/navigation.global.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
[
'options' => [
'label' => 'Admins',
'uri' => '/admin/manage',
'uri' => '/admin/list',
],
],
[
Expand All @@ -40,13 +40,6 @@
'uri' => '/admin/logins',
],
],
[
'options' => [
'label' => 'View logins v2',
'uri' => '/admin/simple-logins',
'icon' => 'c-pink-500 ti-palette',
],
],
],
],
[
Expand Down
20 changes: 5 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,13 @@
},
"homepage": "https://github.com/dotkernel/admin#readme",
"dependencies": {
"@fullcalendar/core": "^6.1.14",
"@fullcalendar/daygrid": "^6.1.14",
"@fullcalendar/interaction": "^6.1.14",
"@fullcalendar/list": "^6.1.14",
"@fullcalendar/timegrid": "^6.1.14",
"@popperjs/core": "^2.11.8",
"babel-polyfill": "^6.26.0",
"bootstrap": "^5.3.3",
"bootstrap-datepicker": "^1.10.0",
"bootstrap-icons": "^1.11.3",
"bootstrap-table": "^1.23.0",
"brand-colors": "^2.1.1",
"chart.js": "^4.4.3",
"easy-pie-chart": "^2.1.7",
"file-loader": "^6.2.0",
"fullcalendar": "^6.1.14",
"jquery": "^3.7.1",
"jquery-sparkline": "^2.4.0",
"load-google-maps-api": "^2.0.2",
"lodash": "^4.17.21",
"masonry-layout": "^4.2.2",
"moment": "^2.30.1",
"perfect-scrollbar": "^1.5.5",
"skycons": "^1.0.0"
Expand Down Expand Up @@ -84,6 +70,10 @@
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dashboard": "^3.3.8",
"webpack-dev-server": "^5.0.4"
"webpack-dev-server": "^5.0.4",
"file-loader": "^6.2.0"
},
"overrides": {
"graceful-fs": "^4.2.11"
}
}
2,098 changes: 2 additions & 2,096 deletions public/css/app.css

Large diffs are not rendered by default.

Binary file removed public/fonts/bootstrap-icons.woff
Binary file not shown.
Binary file removed public/fonts/bootstrap-icons.woff2
Binary file not shown.
Binary file modified public/fonts/fontawesome-webfont.eot
Binary file not shown.
3,320 changes: 652 additions & 2,668 deletions public/fonts/fontawesome-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/fonts/fontawesome-webfont.ttf
Binary file not shown.
Binary file modified public/fonts/fontawesome-webfont.woff
Binary file not shown.
Binary file modified public/fonts/fontawesome-webfont.woff2
Binary file not shown.
1 change: 1 addition & 0 deletions public/js/admin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 14 additions & 44 deletions public/js/app.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/js/table_settings.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions src/Admin/src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
use Admin\Admin\Repository\AdminLoginRepository;
use Admin\Admin\Repository\AdminRepository;
use Admin\Admin\Repository\AdminRoleRepository;
use Admin\Admin\Service\AdminRoleService;
use Admin\Admin\Service\AdminRoleServiceInterface;
use Admin\Admin\Service\AdminService;
use Admin\Admin\Service\AdminServiceInterface;
use Doctrine\ORM\Mapping\Driver\AttributeDriver;
Expand Down Expand Up @@ -52,6 +54,7 @@ public function getDependencies(): array
'factories' => [
AdminController::class => AttributedServiceFactory::class,
AdminService::class => AttributedServiceFactory::class,
AdminRoleService::class => AttributedServiceFactory::class,
AdminRepository::class => AttributedRepositoryFactory::class,
AdminRoleRepository::class => AttributedRepositoryFactory::class,
AdminLoginRepository::class => AttributedRepositoryFactory::class,
Expand All @@ -60,8 +63,9 @@ public function getDependencies(): array
AuthenticationAdapter::class => AttributedServiceFactory::class,
],
'aliases' => [
AdminInterface::class => Admin::class,
AdminServiceInterface::class => AdminService::class,
AdminInterface::class => Admin::class,
AdminServiceInterface::class => AdminService::class,
AdminRoleServiceInterface::class => AdminRoleService::class,
],
];
}
Expand All @@ -80,6 +84,7 @@ public function getForms(): array
return [
'form_manager' => [
'factories' => [
AdminForm::class => ElementFactory::class,
LoginForm::class => ElementFactory::class,
ChangePasswordForm::class => ElementFactory::class,
AdminDeleteForm::class => ElementFactory::class,
Expand Down
Loading
Loading