action = $action; $this->addField(new FieldOptions('genreId', [ 'label' => __('submission.submit.genre.label'), 'description' => __('submission.submit.genre.description'), 'type' => 'radio', 'options' => array_map(function ($genre) { return [ 'value' => (int) $genre->getId(), 'label' => htmlspecialchars($genre->getLocalizedName()), ]; }, $genres), 'value' => 0, ])); } }