Created
January 30, 2014 09:15
-
-
Save juriansluiman/8705106 to your computer and use it in GitHub Desktop.
Example how to integrate an EmailService into the ArticleService
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace MyEmailThingy; | |
class Module | |
{ | |
public function onBootstrap($e) | |
{ | |
$app = $e->getApplication(); | |
$em = $app->getEventManager(); | |
$sem = $em->getSharedManager(); | |
$sm = $app->getServiceManager(); | |
$listener = $sm->get('MyEmailThingy\Listener\EmailSendingListener'); | |
$sem->attach('Soflomo\BlogAdmin\Service\Article', 'create.post', array($listener, 'sendEmail')); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment