12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- use JMS\Serializer\Metadata\ClassMetadata;
- use JMS\Serializer\Metadata\PropertyMetadata;
- $metadata = new ClassMetadata('JMS\Serializer\Tests\Fixtures\BlogPost');
- $metadata->xmlRootName = 'blog-post';
- $metadata->registerNamespace('http://example.com/namespace');
- $metadata->registerNamespace('http://schemas.google.com/g/2005', 'gd');
- $metadata->registerNamespace('http://www.w3.org/2005/Atom', 'atom');
- $metadata->registerNamespace('http://purl.org/dc/elements/1.1/', 'dc');
- $pMetadata = new PropertyMetadata('JMS\Serializer\Tests\Fixtures\BlogPost', 'id');
- $pMetadata->setType('string');
- $pMetadata->groups = array('comments','post');
- $pMetadata->xmlElementCData = false;
- $metadata->addPropertyMetadata($pMetadata);
- $pMetadata = new PropertyMetadata('JMS\Serializer\Tests\Fixtures\BlogPost', 'title');
- $pMetadata->setType('string');
- $pMetadata->groups = array('comments','post');
- $pMetadata->xmlNamespace = "http://purl.org/dc/elements/1.1/";
- $metadata->addPropertyMetadata($pMetadata);
- $pMetadata = new PropertyMetadata('JMS\Serializer\Tests\Fixtures\BlogPost', 'createdAt');
- $pMetadata->setType('DateTime');
- $pMetadata->xmlAttribute = true;
- $metadata->addPropertyMetadata($pMetadata);
- $pMetadata = new PropertyMetadata('JMS\Serializer\Tests\Fixtures\BlogPost', 'published');
- $pMetadata->setType('boolean');
- $pMetadata->serializedName = 'is_published';
- $pMetadata->groups = array('post');
- $pMetadata->xmlAttribute = true;
- $metadata->addPropertyMetadata($pMetadata);
- $pMetadata = new PropertyMetadata('JMS\Serializer\Tests\Fixtures\BlogPost', 'etag');
- $pMetadata->setType('string');
- $pMetadata->groups = array('post');
- $pMetadata->xmlAttribute = true;
- $pMetadata->xmlNamespace = 'http://schemas.google.com/g/2005';
- $metadata->addPropertyMetadata($pMetadata);
- $pMetadata = new PropertyMetadata('JMS\Serializer\Tests\Fixtures\BlogPost', 'comments');
- $pMetadata->setType('ArrayCollection<JMS\Serializer\Tests\Fixtures\Comment>');
- $pMetadata->xmlCollection = true;
- $pMetadata->xmlCollectionInline = true;
- $pMetadata->xmlEntryName = 'comment';
- $pMetadata->groups = array('comments');
- $metadata->addPropertyMetadata($pMetadata);
- $pMetadata = new PropertyMetadata('JMS\Serializer\Tests\Fixtures\BlogPost', 'author');
- $pMetadata->setType('JMS\Serializer\Tests\Fixtures\Author');
- $pMetadata->groups = array('post');
- $pMetadata->xmlNamespace = 'http://www.w3.org/2005/Atom';
- $metadata->addPropertyMetadata($pMetadata);
- return $metadata;
|