You are here

protected static function FieldResolver::isDelta in JSON:API 8.2

Same name and namespace in other branches
  1. 8 src/Context/FieldResolver.php \Drupal\jsonapi\Context\FieldResolver::isDelta()

Determines if a path part targets a specific field delta.

Parameters

string $part: The path part.

Return value

bool TRUE if the part is an integer, FALSE otherwise.

1 call to FieldResolver::isDelta()
FieldResolver::resolveInternalEntityQueryPath in src/Context/FieldResolver.php
Resolves external field expressions into entity query compatible paths.

File

src/Context/FieldResolver.php, line 689

Class

FieldResolver
A service that evaluates external path expressions against Drupal fields.

Namespace

Drupal\jsonapi\Context

Code

protected static function isDelta($part) {
  return (bool) preg_match('/^[0-9]+$/', $part);
}