By editor, 4 November, 2021 Conditional Form Fields (States) Tags Drupal 8 Code Drupal 9 Doc : https://www.drupal.org/docs/drupal-apis/form-api/conditional-form-fields States that can be applied to a form field element:
By editor, 3 November, 2021 Add Zip package to drupal using composer (Example : CKEditor colorbutton as drupal-library) Tags Drupal 8 Drupal 9 Composer Add following packages to composer.json file next to drupal repository
By editor, 30 September, 2021 Translation API - PHP Twig JavaScript Tags Drupal 8 Drupal 9 Translation JavaScript Twig PHP PHP Class using StringTranslationTrait StringTranslationTrait allow to get t() and formatPlural() methods Example: use Drupal\Core\StringTranslation\StringTranslationTrait; use Drupal\Core\StringTranslation\TranslationInterface; class MyClass {
By editor, 13 August, 2021 Import config file programmatically on Drupal 9 Tags Drupal 9 Code Configuration Import configuration file programmatically on Drupal 9 using config_update contrib module and service //Update Module settings \Drupal::service('config_update.config_update')->revert('system.simple', 'mymodule.settings');