10 lines
364 B
PHP
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'));
|
|
} |