* @copyright 2016-2017 netzmacht David Molineus. All rights reserved. * @license LGPL-3.0 https://github.com/netzmacht/contao-leaflet-maps/blob/master/LICENSE * @filesource */ declare(strict_types=1); namespace Netzmacht\Contao\Leaflet\Backend\Renderer\Label\Layer; use Netzmacht\Contao\Leaflet\Model\MarkerModel; use Symfony\Component\Translation\TranslatorInterface as Translator; /** * Class MarkersLabelRenderer. * * @package Netzmacht\Contao\Leaflet\Backend\Renderer\Label\Layer */ final class MarkersLabelRenderer extends AbstractLabelRenderer { /** * {@inheritdoc} */ protected function getLayerType(): string { return 'markers'; } /** * {@inheritdoc} */ public function render(array $row, string $label, Translator $translator): string { $count = MarkerModel::countBy('pid', $row['id']); $label .= sprintf( ' (%s %s)', $count, $translator->trans('countEntries', [], 'contao_tl_leaflet_layer') ); return $label; } }