Skip to content

Instantly share code, notes, and snippets.

@juriansluiman
Created January 6, 2014 10:34
Show Gist options
  • Save juriansluiman/8280923 to your computer and use it in GitHub Desktop.
Save juriansluiman/8280923 to your computer and use it in GitHub Desktop.
<?php
class DbResolver implements ResolverInterface
{
protected $adapter;
public function __construct(AuthAdapter $adapter)
{
$this->adapter = $adapter;
}
}
<?php
namespace MyModule\Factory;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
class AuthAdapterFactory implements FactoryInterface
{
public function createService(ServiceLocatorInterface $sl)
{
$db = $sl->get('Zend\Db\Adapter\Adapter');
$adapter = new AuthAdapter($db,
'users',
'user_login',
'user_password',
'MD5(?)'
);
return $adapter;
}
}
'db' => array(
'driver' => 'Pdo',
'dsn' => 'mysql:dbname=zf2tutorial;host=localhost',
),
'service_manager' => array(
'factories' => array(
'AuthAdapter' => 'MyModule\Factory\AuthAdapterFactory',
'Zend\Db\Adapter\Adapter' => 'Zend\Db\Adapter\AdapterServiceFactory',
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment