Add('title', TextFormBlock::class, [ 'label' => 'Title', ]); // Refresh $this->Add('refresh', ChoiceFormBlock::class, [ 'label' => 'Refresh', 'choices' => [ 'Never' => 0, 'Every 5 minutes' => 5, 'Every 15 minutes' => 15, 'Every 30 minutes' => 30, 'Every hour' => 60, ], ]); $this->Add('dashlets_list', CollectionBlock::class, [ 'label' => 'Dashlets List', 'block_entry_type' => DashletFormBlock::class, 'block_entry_options' => [], ]); } }