/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Exports
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Exports/ProductExport.php (1651B)
collection->count() + 1;
$event->sheet->getDelegate()
->getStyle('F1:F' . $totalRows)
->getAlignment()
->setHorizontal(Alignment::HORIZONTAL_CENTER);
$event->sheet
->getDelegate()
->getStyle('C1:C' . $totalRows)
->getAlignment()
->setHorizontal(Alignment::HORIZONTAL_LEFT);
$event->sheet->getDelegate()
->getColumnDimension('C')
->setWidth(40);
for ($index = 2; $index <= $totalRows; $index++) {
$this->drawingImage($event, 'B', $index);
$status = $event->sheet->getDelegate()
->getStyle('G' . $index)
->getFont()
->getColor();
$value = $event->sheet->getDelegate()
->getCell('G' . $index)
->getValue();
if ($value == BaseStatusEnum::PUBLISHED) {
$status->setARGB('1d9977');
} else {
$status->setARGB('dc3545');
}
$event->sheet
->getDelegate()
->getCell('G' . $index)
->setValue(BaseStatusEnum::getLabel($value));
}
}
}