abstract class AbstractSerializeController implements RequestHandlerInterface
Properties
Methods
<p>Get the data to be serialized and assigned to the response document.</p>
<p>Create a PHP JSON-API Element for output in the document.</p>
<p>Returns the relations to load added by extenders.</p>
<p>Returns the relation callables to load added by extenders.</p>
<p>Eager loads the required relationships.</p>
<p>Set the serializer that will serialize data for the endpoint.</p>
No description
Details
at
line 103
ResponseInterface
handle(ServerRequestInterface $request)
<p>{@inheritdoc}</p>
at
line 144
abstract protected mixed
data(ServerRequestInterface $request, Document $document)
<p>Get the data to be serialized and assigned to the response document.</p>
at
line 153
abstract protected ElementInterface
createElement(mixed $data, SerializerInterface $serializer)
<p>Create a PHP JSON-API Element for output in the document.</p>
at
line 160
protected array
getRelationsToLoad(Collection $models)
<p>Returns the relations to load added by extenders.</p>
at
line 178
protected array
getRelationCallablesToLoad(Collection $models)
<p>Returns the relation callables to load added by extenders.</p>
at
line 194
protected void
loadRelations(Collection $models, array $relations, ServerRequestInterface $request = null)
<p>Eager loads the required relationships.</p>
at
line 254
protected array
extractInclude(ServerRequestInterface $request)
at
line 265
protected array
extractFields(ServerRequestInterface $request)
at
line 275
protected array|null
extractSort(ServerRequestInterface $request)
at
line 285
protected int
extractOffset(ServerRequestInterface $request)
at
line 294
protected int
extractLimit(ServerRequestInterface $request)
at
line 303
protected array
extractFilter(ServerRequestInterface $request)
at
line 312
protected Parameters
buildParameters(ServerRequestInterface $request)
at
line 317
protected bool
sortIsDefault(ServerRequestInterface $request)
at
line 327
setSerializer(string $serializer)
<p>Set the serializer that will serialize data for the endpoint.</p>
at
line 337
addInclude(string|array $name)
<p>Include the given relationship by default.</p>
at
line 347
removeInclude(string|array $name)
<p>Don't include the given relationship by default.</p>
at
line 357
addOptionalInclude(string|array $name)
<p>Make the given relationship available for inclusion.</p>
at
line 367
removeOptionalInclude(string|array $name)
<p>Don't allow the given relationship to be included.</p>
at
line 377
setLimit(int $limit)
<p>Set the default number of results.</p>
at
line 387
setMaxLimit(int $max)
<p>Set the maximum number of results.</p>
at
line 397
addSortField(string|array $field)
<p>Allow sorting results by the given field.</p>
at
line 407
removeSortField(string|array $field)
<p>Disallow sorting results by the given field.</p>
at
line 417
setSort(array $sort)
<p>Set the default sort order for the results.</p>