Skip to content

Instantly share code, notes, and snippets.

@juriansluiman
Created January 30, 2014 09:15
Show Gist options
  • Save juriansluiman/8705106 to your computer and use it in GitHub Desktop.
Save juriansluiman/8705106 to your computer and use it in GitHub Desktop.
Example how to integrate an EmailService into the ArticleService
<?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