12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /*
- * Copyright 2013 Johannes M. Schmitt <schmittjoh@gmail.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- namespace JMS\Serializer\Tests\Fixtures;
- use JMS\Serializer\Annotation\Type;
- use JMS\Serializer\Annotation\XmlRoot;
- use JMS\Serializer\Annotation\XmlNamespace;
- use JMS\Serializer\Annotation\XmlElement;
- use JMS\Serializer\Annotation\XmlAttribute;
- /**
- * @XmlRoot("test-object")
- * @XmlNamespace(uri="http://example.com/namespace")
- * @XmlNamespace(uri="http://schemas.google.com/g/2005", prefix="gd")
- * @XmlNamespace(uri="http://www.w3.org/2005/Atom", prefix="atom")
- */
- class ObjectWithXmlNamespaces
- {
- /**
- * @Type("string")
- * @XmlElement(namespace="http://purl.org/dc/elements/1.1/");
- */
- private $title;
- /**
- * @Type("DateTime")
- * @XmlAttribute
- */
- private $createdAt;
- /**
- * @Type("string")
- * @XmlAttribute(namespace="http://schemas.google.com/g/2005")
- */
- private $etag;
- /**
- * @Type("string")
- * @XmlElement(namespace="http://www.w3.org/2005/Atom")
- */
- private $author;
-
- /**
- * @Type("string")
- * @XmlAttribute(namespace="http://purl.org/dc/elements/1.1/");
- */
- private $language;
- public function __construct($title, $author, \DateTime $createdAt, $language)
- {
- $this->title = $title;
- $this->author = $author;
- $this->createdAt = $createdAt;
- $this->language = $language;
- $this->etag = sha1($this->createdAt->format(\DateTime::ISO8601));
- }
- }
|