Created
January 26, 2011 19:22
-
-
Save avalanche123/797246 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 | |
// short cached container instance | |
class debugProjectContainer extends Container | |
{ | |
public function getDefaultDocumentManager() | |
{ | |
return $this->getDocumentManagerFactory()->get('default'); | |
} | |
} |
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 DocumentManagerFactory | |
{ | |
private $class; | |
private $options; | |
public function __construct($class, $options) | |
{ | |
$this->class = $class; | |
$this->options = array(); | |
} | |
public function get($name) | |
{ | |
if (!isset($this->instances[$name]) { | |
$this->instances[$name] = new $class($this->options[$name]); | |
} | |
return $this->instances[$name]; | |
} | |
} |
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
<service id="document_manager_factory" class="DocumentManagerFactory"> | |
<argument>%document_manager.class%</argument> | |
<argument type="collection"> | |
<argument key="default">%default_document_manager.options%</argument> | |
</argument> | |
</service> | |
<!-- dynamically added document manager definitions --> | |
<service id="default_document_manager" class="%document_manager.class%" factory-service="document_manager_factory" factory-method="get" scope="prototype" synthetic="true"> | |
<argument>default</argument> | |
</service> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment