Skip to content

Instantly share code, notes, and snippets.

@avalanche123
Created January 26, 2011 19:22
Show Gist options
  • Save avalanche123/797246 to your computer and use it in GitHub Desktop.
Save avalanche123/797246 to your computer and use it in GitHub Desktop.
<?php
// short cached container instance
class debugProjectContainer extends Container
{
public function getDefaultDocumentManager()
{
return $this->getDocumentManagerFactory()->get('default');
}
}
<?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];
}
}
<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