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 | |
return array( | |
'di' => array( | |
'definition' => array( | |
//teaching DI to use the factory | |
'class' => array( | |
'Zend\Db\Db' => array( | |
'methods' => array( | |
'factory' => array( | |
'adapter' => array( |
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 Deneb\Session; | |
/** | |
* Manages sessions storage through \Doctrine\ORM\EntityManager | |
* @author Ocramius | |
*/ | |
class SaveHandler implements \Zend_Session_SaveHandler_Interface { | |
const SESSION_ENTITY_NAME = 'Deneb\Entity\Session'; |
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 | |
/** | |
* Description | |
* | |
* @author Marco Pivetta <[email protected]> | |
*/ | |
class SessionAwarePaginator extends Zend_Paginator { | |
const DEFAULT_SESSION_NS = 'SessionAwarePaginator'; |
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
'Zend\View\PhpRenderer' => array( | |
'parameters' => array( | |
'options' => array( | |
'script_paths' => array( | |
'MyModule' => __DIR__ . '/../view', | |
), | |
), | |
), | |
), | |
'Zend\View\HelperLoader' => array( |
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 | |
use Doctrine\Common\ClassLoader, | |
Doctrine\ORM\Tools\Setup, | |
Doctrine\ORM\Mapping\Driver\AnnotationDriver, | |
Doctrine\Common\Annotations\AnnotationReader, | |
Doctrine\ORM\EntityManager; | |
// Autoloaders | |
require_once __DIR__ . '/../lib/doctrine/lib/Doctrine/ORM/Tools/Setup.php'; | |
Doctrine\ORM\Tools\Setup::registerAutoloadGit(__DIR__ . '/../lib/doctrine'); |
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 | |
define('APPLICATION_ENV', 'cli'); | |
require_once(__DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'application.php'); | |
$em = $application->getBootstrap()->getResource('em'); | |
$cli = new \Symfony\Component\Console\Application('DENEB Command Line Interface', Doctrine\ORM\Version::VERSION); | |
$cli->setCatchExceptions(true); | |
$cli->setHelperSet( | |
new \Symfony\Component\Console\Helper\HelperSet(array( | |
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()), | |
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em) |
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 | |
return array( | |
'layout' => 'layout/layout.phtml', | |
'display_exceptions' => true, | |
'di' => array( | |
'instance' => array( | |
'alias' => array( | |
'index' => 'Application\Controller\IndexController', | |
'error' => 'Application\Controller\ErrorController', | |
'view' => 'Zend\View\PhpRenderer', |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
targetNamespace="http://doctrine-project.org/schemas/orm/doctrine-mapping" | |
xmlns:orm="http://doctrine-project.org/schemas/orm/doctrine-mapping" | |
elementFormDefault="qualified"> | |
<xs:annotation> | |
<xs:documentation><![CDATA[ | |
This is the XML Schema for the object/relational |
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 | |
/** | |
* Sets up the locator based on the configuration provided | |
* | |
* @param AppContext $application | |
* @return void | |
*/ | |
protected function setupLocator(AppContext $application) | |
{ | |
// default configuration for the router |
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 | |
/* | |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |