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
Namespace
Drupal\restful\Plugin\resource\DataProviderCode
public static function isNestedField($field_name);