
| Current Path : /var/www/html/rocksensor1/web/modules/contrib/csv_importer/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/modules/contrib/csv_importer/csv_importer.api.php |
<?php
/**
* @file
* API hooks for csv_importer.
*/
/**
* Update CSV data before the import process starts.
*
* @param array $data
* The import data.
*
* @see \Drupal\csv_importer\Plugin\ImporterBase
*/
function hook_csv_importer_pre_import(array &$data) {
foreach ($data as &$content) {
foreach ($content as &$item) {
$item['title'] = ltrim($item['title'], '/');
}
}
}