Files
2025-03-12 17:06:23 +01:00

10 lines
364 B
PHP

<?php
/**
* @var stEventDispatcher $dispatcher
*/
if (SF_APP == 'backend')
{
stPluginHelper::addEnableModule('stNotificationBackend');
stPluginHelper::addRouting('stNotificationBackend', '/notification/:action/*', 'stNotificationBackend', 'list');
$dispatcher->connect('sfGuardUser.signedIn', array('stNotificationPluginListener', 'userSignedIn'));
}