12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace Gedmo\SoftDeleteable\Mapping\Driver;
- use Gedmo\Mapping\Driver\Xml as BaseXml,
- Gedmo\Exception\InvalidMappingException,
- Gedmo\SoftDeleteable\Mapping\Validator;
- /**
- * This is a xml mapping driver for SoftDeleteable
- * behavioral extension. Used for extraction of extended
- * metadata from xml specificaly for SoftDeleteable
- * extension.
- *
- * @author Gustavo Falco <comfortablynumb84@gmail.com>
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @author Miha Vrhovnik <miha.vrhovnik@gmail.com>
- * @package Gedmo.Timestampable.Mapping.Driver
- * @subpackage Xml
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class Xml extends BaseXml
- {
- /**
- * {@inheritDoc}
- */
- public function readExtendedMetadata($meta, array &$config)
- {
- /**
- * @var \SimpleXmlElement $xml
- */
- $xml = $this->_getMapping($meta->name);
- $xmlDoctrine = $xml;
- $xml = $xml->children(self::GEDMO_NAMESPACE_URI);
- if ($xmlDoctrine->getName() == 'entity' || $xmlDoctrine->getName() == 'mapped-superclass') {
- if (isset($xml->{'soft-deleteable'})) {
- $field = $this->_getAttribute($xml->{'soft-deleteable'}, 'field-name');
- if (!$field) {
- throw new InvalidMappingException('Field name for SoftDeleteable class is mandatory.');
- }
- Validator::validateField($meta, $field);
- $config['softDeleteable'] = true;
- $config['fieldName'] = $field;
- }
- }
- }
- }
|