Files
farmOS-dev/web/modules/views_geojson/views_geojson.api.php
2024-12-10 15:08:16 +01:00

30 lines
455 B
PHP

<?php
/**
* @file
* Hooks related to views_geojson module.
*/
use Drupal\views\ViewExecutable;
/**
* @addtogroup hooks
* @{
*/
/**
* Alter geojson view render array immediately before rendering.
*
* @param array $features
* The array of features.
* @param \Drupal\views\ViewExecutable $view
* The current view.
*/
function hook_geojson_view_alter(array &$features, ViewExecutable $view) {
}
/**
* @} End of "addtogroup hooks".
*/