Home
last modified time | relevance | path

Searched refs:data (Results 2426 – 2450 of 5080) sorted by path

1...<<919293949596979899100>>...204

/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A DLICENSE12 …ure or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is…
H A Dconfiguration.rst42 filesystem checks to see whether the data that it has cached is still valid. These checks are usefu…
99 Then, calling ``$serializer->serialize($data, 'json');`` will generate
H A Devent_system.rst55 data, and type. Listeners may modify the type that is being used for
63 to add additional data for an object that you normally do not save inside
75 modify submitted data, or modify the type that is being used for deserialization.
82 submitted data if you require external services for example, or also to
83 perform validation of the submitted data.
H A Dhandlers.rst10 the data, and the type.
H A Dindex.rst8 This library allows you to (de-)serialize data of any complexity. Currently, it supports XML and JS…
14 - (De-)serialize data of any complexity; circular references are handled gracefully.
35 $jsonContent = $serializer->serialize($data, 'json');
H A Dusage.rst28 example, when accepting data via an API.
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst265 $serializer->serialize($data, 'json', SerializationContext::create()->enableMaxDepthChecks());
H A Dstdclass.rst16 - deserialize data into ``stdClass`` objects
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst148 If you need only to serialize your data, you can avoid providing a setter by
208 This annotation can be defined on a method to indicate that the data returned by
212 also defined at class level exposing data using the Symfony Expression Language.
270 This annotation can be defined on a property to indicate that the data of the property
277 This annotation can be defined on a property to indicate that the data of the property
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DAbstractVisitor.php25 public function prepare($data) argument
27 return $data;
H A DArrayTransformerInterface.php19 …* @param mixed $data anything that converts to an array, typically an object or an array of objects
23 …public function toArray($data, ?SerializationContext $context = null, ?string $type = null): array; argument
28 * @param array $data
32 public function fromArray(array $data, string $type, ?DeserializationContext $context = null); argument
H A DGraphNavigatorInterface.php23 * @param mixed $data the data depends on the direction, and type of visitor
30 public function accept($data, ?array $type = null); argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/Annotation/
H A DVirtualProperty.php32 public function __construct(array $data) argument
34 if (isset($data['value'])) {
35 $data['name'] = $data['value'];
36 unset($data['value']);
39 foreach ($data as $key => $value) {
/plugin/findologicxmlexport/vendor/jms/serializer/src/Construction/
H A DDoctrineObjectConstructor.php51 …truct(DeserializationVisitorInterface $visitor, ClassMetadata $metadata, $data, array $type, Deser… argument
58 … return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);
66 … return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);
70 if (!\is_array($data)) {
72 return $objectManager->getReference($metadata->name, $data);
86 if (!array_key_exists($dataName, $data)) {
87 … return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);
89 $identifierList[$name] = $data[$dataName];
102 … return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);
H A DObjectConstructorInterface.php24 * @param mixed $data
27 …truct(DeserializationVisitorInterface $visitor, ClassMetadata $metadata, $data, array $type, Deser… argument
H A DUnserializeObjectConstructor.php20 …truct(DeserializationVisitorInterface $visitor, ClassMetadata $metadata, $data, array $type, Deser… argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DPreDeserializeEvent.php14 private $data; variable in JMS\\Serializer\\EventDispatcher\\PreDeserializeEvent
17 * @param mixed $data
20 public function __construct(DeserializationContext $context, $data, array $type) argument
24 $this->data = $data;
37 return $this->data;
41 * @param mixed $data
43 public function setData($data): void argument
45 $this->data = $data;
/plugin/findologicxmlexport/vendor/jms/serializer/src/Expression/
H A DCompilableExpressionEvaluatorInterface.php17 public function evaluateParsed(Expression $expression, array $data = []); argument
H A DExpressionEvaluator.php41 public function evaluate(string $expression, array $data = []) argument
43 return $this->expressionLanguage->evaluate($expression, $data + $this->context);
49 public function evaluateParsed(Expression $expression, array $data = []) argument
51 … return $this->expressionLanguage->evaluate($expression->getExpression(), $data + $this->context);
H A DExpressionEvaluatorInterface.php15 public function evaluate(string $expression, array $data = []); argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/GraphNavigator/
H A DDeserializationGraphNavigator.php98 * @param mixed $data the data depends on the direction, and type of visitor
103 public function accept($data, ?array $type = null) argument
118 return $this->visitor->visitNull($data, $type);
121 return $this->visitor->visitString($data, $type);
125 return $this->visitor->visitInteger($data, $type);
129 return $this->visitor->visitBoolean($data, $type);
133 return $this->visitor->visitDouble($data, $type);
136 return $this->visitor->visitArray($data, $type);
149 $data = $event->getData();
170 $metadata = $this->resolveMetadata($data, $metadata);
[all …]
H A DSerializationGraphNavigator.php110 public function accept($data, ?array $type = null) argument
115 $typeName = \gettype($data);
117 $typeName = \get_class($data);
121 } elseif (null === $data) {
137 return $this->visitor->visitNull($data, $type);
166 if (null !== $data) {
167 if ($this->context->isVisiting($data)) {
170 $this->context->startVisiting($data);
193 $this->context->stopVisiting($data);
206 $this->context->stopVisiting($data);
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DArrayCollectionHandler.php88 * @param mixed $data
90 …public function deserializeCollection(DeserializationVisitorInterface $visitor, $data, array $type… argument
95 return new ArrayCollection($visitor->visitArray($data, $type));
H A DDateHandler.php132 * @param mixed $data
141 * @param mixed $data
154 * @param mixed $data
167 * @param mixed $data
180 * @param mixed $data
185 if (null === $data) {
193 * @param mixed $data
198 if (null === $data) {
206 * @param mixed $data
211 if (null === $data) {
[all …]
H A DFormErrorHandler.php120 …private function convertFormToArray(SerializationVisitorInterface $visitor, Form $data): \ArrayObj… argument
124 foreach ($data->getErrors() as $error) {
133 foreach ($data->all() as $child) {

1...<<919293949596979899100>>...204