Skip to content
Snippets Groups Projects

Issue #2707689: NodeForm::actions() checks for delete access on new entities

2 files
+ 3
4
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 46e74432
    Issue #2473877 by Lendude, quietone, pefferen: Views UI progress indicator... · 46e74432
    catch authored
    Issue #2473877 by Lendude, quietone, pefferen: Views UI progress indicator styled as pager and placed on strange location
@@ -78,6 +78,7 @@ public function buildForm(array $form, FormStateInterface $form_state, Request $
}
else {
$types = ViewExecutable::getHandlerTypes();
$form['#title'] = $this->t('Configure @type: @item', ['@type' => $types[$type]['lstitle'], '@item' => $handler->adminLabel()]);
// If this item can come from the default display, show a dropdown
// that lets the user choose which display the changes should apply to.
@@ -150,8 +151,6 @@ public function buildForm(array $form, FormStateInterface $form_state, Request $
];
}
$form['#title'] = $this->t('Configure @type: @item', ['@type' => $types[$type]['lstitle'], '@item' => $handler->adminLabel()]);
if (!empty($handler->definition['help'])) {
$form['options']['form_description'] = [
'#markup' => $handler->definition['help'],
Loading