# windpress/3.0.5/vendor/symfony/property-info/Extractor/SerializerExtractor.php

WindPress – Tailwind CSS integration for WordPress, version 3.0.5. 51 lines.

- Page: https://pluginprobe.com/plugins/windpress/3.0.5/code/vendor/symfony/property-info/Extractor/SerializerExtractor.php
- Raw: https://pluginprobe.com/plugins/windpress/3.0.5/raw/vendor/symfony/property-info/Extractor/SerializerExtractor.php
- Modified: 2024-08-28T04:00:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/windpress/3.0.5/code/vendor/symfony/property-info/Extractor/SerializerExtractor.php#L10-L20`.

```php
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace WindPressPackages\Symfony\Component\PropertyInfo\Extractor;

use WindPressPackages\Symfony\Component\PropertyInfo\PropertyListExtractorInterface;
use WindPressPackages\Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactoryInterface;
/**
 * Lists available properties using Symfony Serializer Component metadata.
 *
 * @author Kévin Dunglas <dunglas@gmail.com>
 *
 * @final
 */
class SerializerExtractor implements PropertyListExtractorInterface
{
    private $classMetadataFactory;
    public function __construct(ClassMetadataFactoryInterface $classMetadataFactory)
    {
        $this->classMetadataFactory = $classMetadataFactory;
    }
    /**
     * {@inheritdoc}
     */
    public function getProperties(string $class, array $context = []) : ?array
    {
        if (!\array_key_exists('serializer_groups', $context) || null !== $context['serializer_groups'] && !\is_array($context['serializer_groups'])) {
            return null;
        }
        if (!$this->classMetadataFactory->getMetadataFor($class)) {
            return null;
        }
        $properties = [];
        $serializerClassMetadata = $this->classMetadataFactory->getMetadataFor($class);
        foreach ($serializerClassMetadata->getAttributesMetadata() as $serializerAttributeMetadata) {
            $ignored = \method_exists($serializerAttributeMetadata, 'isIgnored') && $serializerAttributeMetadata->isIgnored();
            if (!$ignored && (null === $context['serializer_groups'] || \array_intersect($context['serializer_groups'], $serializerAttributeMetadata->getGroups()))) {
                $properties[] = $serializerAttributeMetadata->getName();
            }
        }
        return $properties;
    }
}

```
