interface LayerStyleLoaderInterface in farmOS 2.x
Layer style loader interface.
Hierarchy
- interface \Drupal\farm_map\LayerStyleLoaderInterface
Expanded class hierarchy of LayerStyleLoaderInterface
All classes that implement LayerStyleLoaderInterface
File
- modules/
core/ map/ src/ LayerStyleLoaderInterface.php, line 10
Namespace
Drupal\farm_mapView source
interface LayerStyleLoaderInterface {
/**
* Load a single layer style definition, optionally filtered by conditions.
*
* @param array $conditions
* An array of conditions for filtering.
*
* @return \Drupal\farm_map\Entity\LayerStyleInterface|null
* Returns a layer style definition, or NULL if no matches were found.
*/
public function load(array $conditions = []) : ?LayerStyleInterface;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LayerStyleLoaderInterface:: |
public | function | Load a single layer style definition, optionally filtered by conditions. | 1 |