Jump to content

Recommended Posts

I'm starting in Doctrine 2.4 and I'm developing a system where I separate the core files and application files, as follows:

/root
  |-- /Src
        |-- /App
              |-- /Model
                    |-- ** (Application Entities) **
        |-- /Core
              |-- /Model
                    |-- ** (Core Entities) **

In the Doctrine documentation shows the following form to set 1 directory for Esntitys:

$config = Setup::createAnnotationMetadataConfiguration(array(__DIR__. "/src"), $isDevMode);

But when I have to configure more than one directory that will contain the Entitys of my application, how to proceed?

 

Thanks in advance!

That is really hard, your mind may be blown.

 

$dirs = array(__DIR__ . "/src", __DIR__ . "/src2");
$config = Setup::createAnnotationMetadataConfiguration($dirs, $isDevMode);
To make it easier to consume:

 

$config = Setup::createAnnotationMetadataConfiguration(array(__DIR__ . "/src", __DIR__ . "/src2"), $isDevMode);
Now for the complete meltdown:

 

$config = Setup::createConfiguration();

$chain = new MetadataChain();

foreach (array('xml' => __DIR__ . "/src", 'yml' => __DIR__ . "/src2") as $driverName => $path) {
  switch ($driverName) {
    case 'xml': $driver = new SimplifiedXmlMetadataDriver($path);
    case 'yml': $driver = new SimplifiedYamlMetadataDriver($path);
  }
  $chain->addDriver($driver);
}

$config->setMetadataDriver($chain);
..
EDIT: do not copy paste, it won't work, you'll need to do your own research. Edited by ignace

That is really hard, your mind may be blown.

 

$dirs = array(__DIR__ . "/src", __DIR__ . "/src2");
$config = Setup::createAnnotationMetadataConfiguration($dirs, $isDevMode);
To make it easier to consume:

 

$config = Setup::createAnnotationMetadataConfiguration(array(__DIR__ . "/src", __DIR__ . "/src2"), $isDevMode);

 

º_º ... Is that so hard? kkkk

 

I should have known. I'm ashamed of myself! Upon arriving home I will test and give feedback.

 

Thank you very much.

Edited by LeoFelipe

That is really hard, your mind may be blown.

 

$dirs = array(__DIR__ . "/src", __DIR__ . "/src2");
$config = Setup::createAnnotationMetadataConfiguration($dirs, $isDevMode);
To make it easier to consume:

 

$config = Setup::createAnnotationMetadataConfiguration(array(__DIR__ . "/src", __DIR__ . "/src2"), $isDevMode);
Now for the complete meltdown:

 

$config = Setup::createConfiguration();

$chain = new MetadataChain();

foreach (array('xml' => __DIR__ . "/src", 'yml' => __DIR__ . "/src2") as $driverName => $path) {
  switch ($driverName) {
    case 'xml': $driver = new SimplifiedXmlMetadataDriver($path);
    case 'yml': $driver = new SimplifiedYamlMetadataDriver($path);
  }
  $chain->addDriver($driver);
}

$config->setMetadataDriver($chain);
..
EDIT: do not copy paste, it won't work, you'll need to do your own research.

 

 

Hey man. Thanks again for your help. I tested the code and it worked.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.