You are here

public static function DataProviderInterface::isNestedField in RESTful 7.2

Checks if the passed in string is a dot-nested field.

Parameters

string $field_name: The field name.

Return value

bool TRUE if the field is nested. FALSE otherwise.

3 methods override DataProviderInterface::isNestedField()
CacheDecoratedDataProvider::isNestedField in src/Plugin/resource/DataProvider/CacheDecoratedDataProvider.php
Checks if the passed in string is a dot-nested field.
DataProvider::isNestedField in src/Plugin/resource/DataProvider/DataProvider.php
Checks if the passed in string is a dot-nested field.
DataProviderDecorator::isNestedField in src/Plugin/resource/DataProvider/DataProviderDecorator.php
Checks if the passed in string is a dot-nested field.

File

src/Plugin/resource/DataProvider/DataProviderInterface.php, line 36
Contains \Drupal\restful\Plugin\resource\DataProvider\DataProviderInterface.

Class

DataProviderInterface

Namespace

Drupal\restful\Plugin\resource\DataProvider

Code

public static function isNestedField($field_name);