Created
January 6, 2014 10:34
-
-
Save juriansluiman/8280923 to your computer and use it in GitHub Desktop.
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 | |
class DbResolver implements ResolverInterface | |
{ | |
protected $adapter; | |
public function __construct(AuthAdapter $adapter) | |
{ | |
$this->adapter = $adapter; | |
} | |
} |
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 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; | |
} | |
} |
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
'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