1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
-
- namespace Gedmo\Mapping\Driver;
-
- use Gedmo\Mapping\Driver;
-
- /**
- * The chain mapping driver enables chained
- * extension mapping driver support
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @package Gedmo.Mapping.Driver
- * @subpackage Chain
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class Chain implements Driver
- {
- /**
- * List of drivers nested
- * @var array
- */
- private $_drivers = array();
-
- /**
- * Add a nested driver.
- *
- * @param Driver $nestedDriver
- * @param string $namespace
- */
- public function addDriver(Driver $nestedDriver, $namespace)
- {
- $this->_drivers[$namespace] = $nestedDriver;
- }
-
- /**
- * Get the array of nested drivers.
- *
- * @return array $drivers
- */
- public function getDrivers()
- {
- return $this->_drivers;
- }
-
- /**
- * {@inheritDoc}
- */
- public function readExtendedMetadata($meta, array &$config)
- {
- foreach ($this->_drivers as $namespace => $driver) {
- if (strpos($meta->name, $namespace) === 0) {
- $driver->readExtendedMetadata($meta, $config);
- return;
- }
- }
- // commenting it for customized mapping support, debugging of such cases might get harder
- //throw new \Gedmo\Exception\UnexpectedValueException('Class ' . $meta->name . ' is not a valid entity or mapped super class.');
- }
-
- /**
- * Passes in the mapping read by original driver
- *
- * @param $driver
- * @return void
- */
- public function setOriginalDriver($driver)
- {
- //not needed here
- }
- }
|