src/Eccube/Application.php 1 location
|
@@ 618-620 (lines=3) @@
|
| 615 |
|
// Doctrine Extend |
| 616 |
|
if (isset($config['orm.path']) && is_array($config['orm.path'])) { |
| 617 |
|
$paths = array(); |
| 618 |
|
foreach ($config['orm.path'] as $path) { |
| 619 |
|
$paths[] = $this['config']['plugin_realdir'].'/'.$config['code'].$path; |
| 620 |
|
} |
| 621 |
|
$ormMappings[] = array( |
| 622 |
|
'type' => 'yml', |
| 623 |
|
'namespace' => 'Plugin\\'.$config['code'].'\\Entity', |
src/Eccube/Controller/Install/InstallController.php 1 location
|
@@ 472-474 (lines=3) @@
|
| 469 |
|
// Doctrine Extend |
| 470 |
|
if (isset($config['orm.path']) && is_array($config['orm.path'])) { |
| 471 |
|
$paths = array(); |
| 472 |
|
foreach ($config['orm.path'] as $path) { |
| 473 |
|
$paths[] = __DIR__.'/../../../../app/Plugin/'.$config['code'].$path; |
| 474 |
|
} |
| 475 |
|
$ormMappings[] = array( |
| 476 |
|
'type' => 'annotation', |
| 477 |
|
'namespace' => 'Plugin\\'.$config['code'].'\\Entity', |