1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace Gedmo\SoftDeleteable\Mapping\Driver;
- use Gedmo\Mapping\Driver\Xml as BaseXml;
- use Gedmo\Exception\InvalidMappingException;
- use Gedmo\SoftDeleteable\Mapping\Validator;
- /**
- * This is a xml mapping driver for SoftDeleteable
- * behavioral extension. Used for extraction of extended
- * metadata from xml specifically for SoftDeleteable
- * extension.
- *
- * @author Gustavo Falco <comfortablynumb84@gmail.com>
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @author Miha Vrhovnik <miha.vrhovnik@gmail.com>
- * @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 (in_array($xmlDoctrine->getName(), array('mapped-superclass', 'entity', 'document', 'embedded-document'))) {
- 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;
- $config['timeAware'] = false;
- if ($this->_isAttributeSet($xml->{'soft-deleteable'}, 'time-aware')) {
- $config['timeAware'] = $this->_getBooleanAttribute($xml->{'soft-deleteable'}, 'time-aware');
- }
- $config['hardDelete'] = true;
- if ($this->_isAttributeSet($xml->{'soft-deleteable'}, 'hard-delete')) {
- $config['hardDelete'] = $this->_getBooleanAttribute($xml->{'soft-deleteable'}, 'hard-delete');
- }
- }
- }
- }
- }
|