thunderwolf / tw-admin-guard-plugin
symfony 1.x Admin Template plugin
Installs: 135
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony1-plugin
Requires
- composer/installers: *
- thunderwolf/sf-guard-plugin: *
- thunderwolf/tw-admin-plugin: *
This package is not auto-updated.
Last update: 2022-02-16 23:40:01 UTC
README
Integration of twAdminPlugin with sfGuardPlugin
Installation
-
Install and configure sfGuardPlugin
-
Install and configure twAdminPlugin
Secure your application
To secure a symfony application:
- Enable the module
twGuardAuth
insettings.yml
all: .settings: enabled_modules: [..., twGuardAuth]
- Change the default login and secure modules in
settings.yml
login_module: twGuardAuth login_action: signin secure_module: twGuardAuth secure_action: secure
- Optionally add the following routing rules to
routing.yml
sf_guard_signin: url: /login param: { module: twGuardAuth, action: signin } sf_guard_signout: url: /logout param: { module: twGuardAuth, action: signout } sf_guard_password: url: /request_password param: { module: twGuardAuth, action: password }
You can customize the url
parameter of each route.
N.B.: You must have a @homepage
routing rule (used when a user sign out)
These routes are automatically registered by the plugin if the module sfGuardAuth
is enabled unless you defined tw_admin_guard_plugin_routes_register
to false
in the app.yml
configuration file:
all: tw_admin_guard_plugin: routes_register: false
- Secure some modules or your entire application in
security.yml
default: is_secure: on
- You're done. Now, if you try to access a secure page, you will be redirected
to the login page.
If you have loaded the default fixture file, try to login with
admin
as username andadmin
as password.
Manage your users, permissions and groups
To be able to manage your users, permissions and groups, sfGuardPlugin
comes
with 3 modules that can be integrated in your backend application.
These modules are auto-generated thanks to the symfony admin generator.
- Enable the modules in
settings.yml
all: .settings: enabled_modules: [..., twAdmin]
-
Access the modules with the default route:
http://www.example.com/backend.php/tw_guard_user
Rest is the same like in sfGuardPlugin Documentation