user = $tokenStorage->getToken() ? $tokenStorage->getToken()->getUser() : null; if (null === $this->user || !\is_object($this->user)) { return; } } public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('sortOrder', ChoiceFilterType::class, [ 'choices' => [ 'entry.sort.ascending' => 'asc', 'entry.sort.descending' => 'desc', ], 'label' => 'entry.sort.order_label', ]) ->add('sortType', ChoiceFilterType::class, [ 'choices' => [ 'entry.sort.by.creation_date' => 'createdAt', 'entry.sort.by.starred_date' => 'starredAt', 'entry.sort.by.archive_date' => 'archivedAt', 'entry.sort.by.title' => 'title', 'entry.sort.by.last_updated' => 'updatedAt', ], 'label' => 'entry.sort.status_label', ]) ; } public function getBlockPrefix() { return 'entry_sort'; } public function configureOptions(OptionsResolver $resolver) { $resolver->setDefaults([ 'csrf_protection' => false, 'validation_groups' => ['sortering'], ]); } }