Hooks

The "gpsnose" extension provides the following Hooks.

Tokens scanned

$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['gpsnose']['tokensScanned'][] = 'myext_cacheProc->proc';

This Hook will be called everytime new MshupTokenScans where stored to the database

You get a list of \SmartNoses\Gpsnose\Domain\Model\TokenScan in the $params['addedScans']

New user logged in

$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['gpsnose']['loginNewUser'][] = 'myext_cacheProc->proc';

This Hook will be called after a new user has successfully logged in

You get a \SmartNoses\Gpsnose\Domain\Model\FrontendUser in the $params['fe_user']

Existing user logged in

$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['gpsnose']['loginUpdateUser'][] = 'myext_cacheProc->proc';

This Hook will be called after an existing user has successfully logged in

You get a \SmartNoses\Gpsnose\Domain\Model\FrontendUser in the $params['fe_user']

Target group: Administrators