Module inject code to non-processed node body text. After inject, body text processed by node text format, and if node text format contains filter "Limit allowed HTML tags and correct faulty HTML" then injected code becomes cleansed.
@kalpanajaiswal try change label from "Π‘ΠΎΠ΄Π΅ΡΠΆΠΈΠΌΠΎΠ΅" to any word
xandeadx β created an issue.
If you don't like case with F5, another example β user click button twice, using "back" in browser, and click third time to button.
On F5 button form submitted, not just "refreshed". Browser send previous POST request.
On F5 form submitted, but $form_state storage disappears
@cilefen disable form redirect
xandeadx β created an issue.
Newbie developers (for which documentation has been written) do not use complicated dev environment like docker, ddev, etc. They install composer, drupal, drush and want to start development. vendor/bin/drush
is native, independent of OS, works for everyone method to execute drush. Advanced developers can use any method for execute drush - drush
, d
, sudo drush
, php vendor/drush/drush/drush
.
Global drush is optional feature, also don't work on Windows system. Correct path to execute drush - vendor/bin/drush
Video:
Code to reproduce:
public function buildForm(array $form, FormStateInterface $form_state): array {
$form['textfield'] = [
'#type' => 'textfield',
'#ajax' => [
'callback' => '::ajaxUpdateTextfield',
'event' => 'input',
'wrapper' => 'textfield',
],
'#prefix' => '<div id="textfield">',
'#suffix' => '</div>',
];
return $form;
}
public static function ajaxUpdateTextfield(array $form, FormStateInterface $form_state): array {
return $form['textfield'];
}
Same errors on Drupal 10.0.2
Go to admin/structure/eav/attributes/form-display and change term widget.
xandeadx β created an issue.