mouf/security.userservice-splash

This package contains a set of class to bind the Splash MVC framework (>=v4.0) with the UserService component. It features: a @Logged annotation to restrict access to logged users only.

v10.0.0 2018-08-28 08:44 UTC

This package is auto-updated.

Last update: 2024-03-29 12:01:24 UTC


README

This package is part of the Mouf PHP framework and contains the @Logged annotation to bind with Splash to the UserService.

The @Logged annotation

This filter can be used in any action. If you put this annotation, the user will be denied access if he is not logged in.

/**
 * A sample default action that requires to be logged.
 *
 * @URL ("/homepage")
 * @Logged
 */
public function index() { ... }
/**
 * A sample default action that requires to be logged.
 *
 * @URL ("/homepage")
 * @Logged(middlewareName = "myUnauthorizedMiddleware")
 */
public function index() { ... }