SimpleFormFactory

class SimpleFormFactory extends FormLoginFactory Methods create(ContainerBuilder $container, $id, $config, $userProviderId, $defaultEntryPointId) from AbstractFactory addConfiguration(NodeDefinition $node) addOption($name, $default = null) from AbstractFactory __construct() getPosition() from FormLoginFactory getKey() Details create(ContainerBuilder $container, $id, $config, $userProviderId, $defaultEntryPointId) Para

SimpleFormAuthenticatorInterface

interface SimpleFormAuthenticatorInterface implements SimpleAuthenticatorInterface Methods authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey) from SimpleAuthenticatorInterface supportsToken(TokenInterface $token, $providerKey) from SimpleAuthenticatorInterface createToken(Request $request, $username, $password, $providerKey) Details authenticateToken(TokenInterface $token, UserProviderInterface $userProvid

SimpleFormAuthenticationListener

class SimpleFormAuthenticationListener extends AbstractAuthenticationListener Methods __construct(TokenStorageInterface $tokenStorage, AuthenticationManagerInterface $authenticationManager, SessionAuthenticationStrategyInterface $sessionStrategy, HttpUtils $httpUtils, string $providerKey, AuthenticationSuccessHandlerInterface $successHandler, AuthenticationFailureHandlerInterface $failureHandler, array $options = array(), LoggerInterface $logger = null, EventDispatcherInterface $dispatcher

SimpleChoiceList deprecated::getValuesForChoices()

array getValuesForChoices(array $choices) Returns the values corresponding to the given choices. The values must be strings. The values must be returned with the same keys and in the same order as the corresponding choices in the given array. Parameters array $choices An array of choices. Not existing choices in this array are ignored Return Value array An array of choice values with ascending, 0-based numeric keys

SimpleChoiceList deprecated

class SimpleChoiceList extends ChoiceList deprecated since version 2.7, to be removed in 3.0. Use {@link \Symfony\Component\Form\ChoiceList\ArrayChoiceList} instead. A choice list for choices of type string or integer. Choices and their associated labels can be passed in a single array. Since choices are passed as array keys, only strings or integer choices are allowed. Choices may also be given as hierarchy of unlimited depth by creating nested arrays. The title of the sub-hierarchy can

SimpleChoiceList deprecated::getChoicesForValues()

array getChoicesForValues(array $values) Returns the choices corresponding to the given values. The choices can have any data type. The choices must be returned with the same keys and in the same order as the corresponding values in the given array. Parameters array $values An array of choice values. Not existing values in this array are ignored Return Value array An array of choices with ascending, 0-based numeric keys

SimpleAuthenticatorInterface::authenticateToken()

authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey) Parameters TokenInterface $token UserProviderInterface $userProvider $providerKey

SimpleAuthenticatorInterface::supportsToken()

supportsToken(TokenInterface $token, $providerKey) Parameters TokenInterface $token $providerKey

SimpleAuthenticatorInterface

interface SimpleAuthenticatorInterface Methods authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey) supportsToken(TokenInterface $token, $providerKey) Details authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey) Parameters TokenInterface $token UserProviderInterface $userProvider $providerKey supportsToken(TokenInterface $token

SimpleAuthenticationProvider::supports()

bool supports(TokenInterface $token) Checks whether this provider supports the given token. Parameters TokenInterface $token A TokenInterface instance Return Value bool true if the implementation supports the Token, false otherwise