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.

Installs: 193 782

Dependents: 5

Suggesters: 0

Security: 0

Stars: 0

Watchers: 8

Forks: 5

Open Issues: 0

pkg:composer/mouf/security.userservice-splash

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

This package is auto-updated.

Last update: 2025-09-29 01:21:56 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() { ... }