12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- namespace Gedmo\Mapping\Driver;
- use Gedmo\Mapping\Driver,
- Doctrine\Common\Persistence\Mapping\ClassMetadata;
- /**
- * 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 validateFullMetadata(ClassMetadata $meta, array $config) {}
-
- /**
- * {@inheritDoc}
- */
- public function readExtendedMetadata(ClassMetadata $meta, array &$config)
- {
- foreach ($this->_drivers as $namespace => $driver) {
- if (strpos($meta->name, $namespace) === 0) {
- $driver->readExtendedMetadata($meta, $config);
- return;
- }
- }
- 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
- }
- }
|