Account created on 6 October 2016, over 8 years ago
#

Merge Requests

Recent comments

🇦🇺Australia silverham

Thanks for the credit from the local Meetup.

🇦🇺Australia silverham

Suggesting to add ‘needs follow up’ tag so issue can related to a new or existing follow issue in context module then closed once follow-up is created. Otherwise link is lost.

🇦🇺Australia silverham

Theme hook workaround to remove the config if it's invalid. So config is created but then removed:

use Drupal\Core\StringTranslation\TranslatableMarkup;

/**
 * Disable: Update alert api view to strip tags from visibility validation.
 *
 * Avoid error: "Error: Call to a member function setSyncing() on null"
 *
 * @see https://www.drupal.org/project/drupal/issues/3051453
 *
 * @SuppressWarnings(PHPMD.StaticAccess)
 */
function MYTHEME_post_update_disable_civictheme_alert_visibility_validation(): string {
  if (!\Drupal::service('theme_handler')->themeExists('civictheme')) {
    return (string) (new TranslatableMarkup("Civictheme is not installed, post update skipped."));
  }
  $config_name = 'views.view.civictheme_alerts';
  $config_entity_type = 'view';
  $config_object = \Drupal::configFactory()->getEditable($config_name);
  if (!$config_object) {
    return (string) (new TranslatableMarkup("The Civictheme config, @config, not detcted, update .", ['@config' => $config_name]));
  }
  $storage = \Drupal::service('entity_type.manager')->getStorage($config_entity_type);
  // Var $id is "civictheme_alerts".
  // Same as:
  // phpcs:disable
  // $id = Drupal\Core\Config\Entity\ConfigEntityStorage\ConfigEntityStorage::getIDFromConfigName(
  //   'views.view.civictheme_alerts',
  //   'views.view'
  // );
  // phpcs:enable
  $id = substr($config_name, strpos($config_name, '.', 6) + 1);
  $config_read = $storage->load($id);
  // If it's bad config then delete it.
  if (!$config_read) {
    $view_config = \Drupal::configFactory()->getEditable($config_name);
    $view_config->delete();
    return (string) (new TranslatableMarkup("The Civictheme config, @config, was removed because it was invalid.", ['@config' => $config_name]));
  }
  return (string) (new TranslatableMarkup("The Civictheme config, @config, was kept because it was valid.", ['@config' => $config_name]));
}
🇦🇺Australia silverham

I worked on this during DrupalCon Singapore. I started work on a having mock entity reference revisions field type since entity reference revisions module is in contrib in git merge request. My test is just a mock placeholder. I am finished for today.

🇦🇺Australia silverham

Add related issue where even if revision can be fetched via JSON:API, the first one is cached. 🐛 Add revision ID to "jsonapi_normalizations" cache keys Needs work

🇦🇺Australia silverham

silverham made their first commit to this issue’s fork.

🇦🇺Australia silverham

For google search - I came here to mention that on the current 4.x version, the same issue applies (html tags shown but escaped) in Drupal view excerpt UNLESS you also had the rendered item field to the Drupal view (can be hidden), otherwise Drupal load the rendered item which won't have the HTML filter processor applied, and that get gets highlighted.

🇦🇺Australia silverham

I just wanted to mention, since this result shows up in internet search engines that if you experience the same error:

`Warning: Undefined array key "name" in template_preprocess_taxonomy_term()`

Then it could because one of your modules sets the `name` to be configurable in `manage display` but it is hidden. This is not a problem because an associated setting of `enable_base_field_custom_preprocess_skipping` per entity type should be set, then `name` processing is skipped but it is not set.

Example code of what should be set:


/**
 * Implements hook_entity_base_field_info_alter().
 *
 * NOTE: If title is hidden, then `enable_base_field_custom_preprocess_skipping`
 * must be set to true in hook_entity_type_build().
 */
function MODULE_NAME_entity_base_field_info_alter(&$fields, $entity_type) {
  if ($entity_type->id() == 'taxonomy_term') {
    if (isset($fields['name'])) {
      $fields['name']->setDisplayConfigurable('view', TRUE);
    }
  }
}

/**
 * Implements hook_entity_type_build().
 *
 * If `enable_base_field_custom_preprocess_skipping` is set to true, then the
 * the name on the entity type e.g. taxonomy term's must be set to
 * `$fields['name']->setDisplayConfigurable('view', TRUE);` else name won't
 * show, if it's hidden.
 *
 * @see template_preprocess_taxonomy_term() in core taxonomy module.
 */
function MODULE_NAME_entity_type_build(array &$entity_types) {
  if (isset($entity_types['taxonomy_term'])) {
    $entity_types['taxonomy_term']->set('enable_base_field_custom_preprocess_skipping', TRUE);
  }
}

@see also https://git.drupalcode.org/project/manage_display/-/blob/3.x/manage_disp...

🇦🇺Australia silverham

I note that that the previous Merge request (MR !3) worked on old a version of default_content (2.0.0alpha2). But it still had the issue of using an MR which could be changed by anyone - so I have changed it to use a static patch file instead and added explicit dependency on 2.0.0alpha2.

In the case that maintainers want to the use the newest version of default_content (2.0.0alpha3), i have created a new Merge request (MR !4). Same deal - using a static patch file instead and added explicit dependency on 2.0.0alpha3 or higher..

🇦🇺Australia silverham

[Do not commit - for version 2.0.0-alpha3 only]
Uploading patch file 2698425-do-not-re-import-existing-entities--acquia-starter-kit--2-0-0alpha3-2024-08-30.patch for Acquia starter kit since it depended on a merge request patch which was updated but I believe it should of depended on uploaded patch file instead to avoid the issue in the future.

🇦🇺Australia silverham

silverham made their first commit to this issue’s fork.

🇦🇺Australia silverham

[Do not commit]
Uploading patch file for Acquia starter kit since it depended on a merge request patch which was updated but I believe it should of depended on uploaded patch file instead to avoid the issue in the future.

🇦🇺Australia silverham

Added combined patch over at: https://www.drupal.org/project/entity_browser/issues/3036009#comment-157... Configurable checkbox label RTBC

@see Configurable checkbox label RTBC

🇦🇺Australia silverham

Similar patch against latest 8.x-2.x version (note fields are different) but with
- Can use long text with HTML now.
- Has optional "CSS no-wrap" option.

🇦🇺Australia silverham

Missed CSS file, causing crash + use HTML escape on label instead of just views built-in XSS admin function.

🇦🇺Australia silverham

Attaching patch uses static variable instead, so format is not locked in. not sure why it added twice though.

🇦🇺Australia silverham

Added example with `preg_quote()` function.

🇦🇺Australia silverham

Thanks all for adjusting the patch and writing tests, I don't time/know how to do all these things. 🙂

🇦🇺Australia silverham

Closing this issue in favour of the orginal issue 🐛 SvgImageUrlFormatter parent construct wrong order Needs review where the newly attached patch fixes both issues buy using the suggestion (thanks!) to not override __construct() method but also reuse the parent create() method, then assign property after object creation so it will be compatible with future releases.

🇦🇺Australia silverham

Attaching a new patch that does not override the __construct() method, nor does it define the specific parameter order in its own create() method.

Rather, it assigns the required extra class property after the class creation by overriding create() method, calling the parent create method, then assigning the paramater, so then it is compatible with all versions of Drupal core including Drupal 10. (Thanks to comment #3388971-3: SvgImageUrlFormatter parent construct missing arguments 10 needed 9 passed. for the pointer).

I am closing the duplicate issue in 🐛 SvgImageUrlFormatter parent construct missing arguments 10 needed 9 passed. Active as this patch fixes both issues. Additionally, the reason why the initial patch in the linked ticket does not work is because it defines the parameter order in it's create() method, rather reusing the parent create() method.

🇦🇺Australia silverham

Oops patch only appiles for dev version due to different info.yml, attached patch for 3.4 module version for composer runs.

🇦🇺Australia silverham

Compose wouldn't apply #14, so regenerated the same patch (no changes).

🇦🇺Australia silverham

See attached patch for 8.x-1.x version of this module.

🇦🇺Australia silverham

I had to also set the default command to use for lando.

$config['symfony_mailer.mailer_transport.sendmail']['configuration']['query']['command'] = ini_get('sendmail_path') . ' -t';

🇦🇺Australia silverham

Attached patch, no tests. Also moved $base_table_view = $config->get('base_table'); since is only need outside of foreach loop.

🇦🇺Australia silverham

Attached patch, no tests. Also moved $base_table_view = $config->get('base_table'); since is only need outside of foreach loop.

🇦🇺Australia silverham

Actually this issue only appears in Drupal 9.4.x. In Drupal 9.5.x/10.x/11.x, the order is correct. Attaching patch to detect version.

🇦🇺Australia silverham

Echoing sentiment :-(

All of our JavaScript/jQuery will have to be updated too.

From:
[my_theme.libraries.yml]

global-js:
  version: 1.0
  js:
    assets/js/main.js: {}
  dependencies:
   - core/jquery

[main.js]

(function ($, Drupal, once) {
  Drupal.behaviors.myThemeOrModule = {
    // Both single or multiple elements is fine.
    $('.selector', context).addClass('my-class');
    // Multiple elements.
    $('.views-row', context).each(function(i, element) {
      $(element).addClass('my-class');
    });
  };
})(jQuery, Drupal, once);

To:
[my_theme.libraries.yml]

global-js:
  version: 1.0
  js:
    assets/js/main.js: {}
  dependencies:
   - core/jquery
   - core/once

[main.js]

(function ($, Drupal, once) {
  Drupal.behaviors.myThemeOrModule = {
    // Both single or multiple elements is fine.
    $(once('my-unique-once-id', '.selector', context)).addClass('my-class');
    // Multiple elements.
    $(once('my-unique-once-id', '.selector', context)).each(function(index, element) {
      $(element).addClass('my-class');
    });
    // OR use native once's return array => forEach() but note you that can't use jQuery selector extensions  like `div:visible`, without calling jQuery like `once([...]).filter(':visible')`
    once('my-unique-once-id', '.selector', context).forEach(function (element, index) {
      $(element).addClass('my-class');
    });
  };
})(jQuery, Drupal, once);

Once API is documented here: https://www.npmjs.com/package/@drupal/once
[do not NPM install it, it is already in drupal core, ass add line via libraries.yml :-) ]

🇦🇺Australia silverham

This error is also preventing form from on saving my Drupal views. Please commit fix.

Views error:

The website encountered an unexpected error. Please try again later.
TypeError: Drupal\image\Plugin\Field\FieldFormatter\ImageFormatter::__construct(): Argument #8 ($current_user) must be of type Drupal\Core\Session\AccountInterface, Drupal\image\ImageStyleStorage given, called in /app/build/web/modules/contrib/svg_image/src/Plugin/Field/FieldFormatter/SvgImageUrlFormatter.php on line 41 in Drupal\image\Plugin\Field\FieldFormatter\ImageFormatter->__construct() (line 78 of core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php).
Drupal\image\Plugin\Field\FieldFormatter\ImageFormatter->__construct('image_url', Array, Object, Array, '', '_custom', Array, Object, Object) (Line: 41)
Drupal\svg_image\Plugin\Field\FieldFormatter\SvgImageUrlFormatter->__construct('image_url', Array, Object, Array, '', '_custom', Array, Object, Object, Object) (Line: 59)
Drupal\svg_image\Plugin\Field\FieldFormatter\SvgImageUrlFormatter::create(Object, Array, 'image_url', Array) (Line: 64)
Drupal\Core\Field\FormatterPluginManager->createInstance('image_url', Array) (Line: 126)
Drupal\Core\Field\FormatterPluginManager->getInstance(Array) (Line: 1002)
Drupal\views\Plugin\views\field\EntityField->getFormatterInstance() (Line: 1020)
Drupal\views\Plugin\views\field\EntityField->calculateDependencies() (Line: 71)
Drupal\views\Plugin\views\display\DisplayPluginBase->getPluginDependencies(Object) (Line: 89)
Drupal\views\Plugin\views\display\DisplayPluginBase->calculatePluginDependencies(Object, 17)
array_walk(Array, Array) (Line: 959)
Drupal\views\Plugin\views\display\DisplayPluginBase->calculateDependencies() (Line: 71)
Drupal\Core\Config\Entity\ConfigEntityBase->getPluginDependencies(Object) (Line: 89)
Drupal\Core\Config\Entity\ConfigEntityBase->calculatePluginDependencies(Object) (Line: 282)
Drupal\views\Entity\View->calculateDependencies() (Line: 319)
Drupal\Core\Config\Entity\ConfigEntityBase->preSave(Object) (Line: 292)
Drupal\views\Entity\View->preSave(Object) (Line: 562)
Drupal\Core\Entity\EntityStorageBase->doPreSave(Object) (Line: 517)
Drupal\Core\Entity\EntityStorageBase->save(Object) (Line: 253)
Drupal\Core\Config\Entity\ConfigEntityStorage->save(Object) (Line: 339)
Drupal\Core\Entity\EntityBase->save() (Line: 607)
Drupal\Core\Config\Entity\ConfigEntityBase->save() (Line: 991)
Drupal\views_ui\ViewUI->save() (Line: 337)
Drupal\views_ui\ViewEditForm->save(Array, Object)
call_user_func_array(Array, Array) (Line: 114)
Drupal\Core\Form\FormSubmitter->executeSubmitHandlers(Array, Object) (Line: 52)
Drupal\Core\Form\FormSubmitter->doSubmitForm(Array, Object) (Line: 592)
Drupal\Core\Form\FormBuilder->processForm('view_edit_form', Array, Object) (Line: 320)
Drupal\Core\Form\FormBuilder->buildForm(Object, Object) (Line: 48)
Drupal\Core\Entity\EntityFormBuilder->getForm(Object, 'edit', Array) (Line: 230)
Drupal\views_ui\Controller\ViewsUIController->edit(Object, NULL)
call_user_func_array(Array, Array) (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 564)
Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 124)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext(Array, Array) (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 169)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 81)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 58)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 106)
Drupal\page_cache\StackMiddleware\PageCache->pass(Object, 1, 1) (Line: 85)
Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 50)
Drupal\ban\BanMiddleware->handle(Object, 1, 1) (Line: 270)
Drupal\shield\ShieldMiddleware->bypass(Object, 1, 1) (Line: 137)
Drupal\shield\ShieldMiddleware->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 23)
Stack\StackedHttpKernel->handle(Object, 1, 1) (Line: 709)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)
🇦🇺Australia silverham

Attaching draft patch for Drupal test system without attachments.

🇦🇺Australia silverham

Rerolled against latest release 8.x-1.3.

🇦🇺Australia silverham

For those who find this via Search engines, you can pipe to `drush php-eval` like follows, depending on what style you like in bash.

read -r -d '' DRUSH_TEMP_COMMAND <<'EOF'; ./vendor/bin/drush php-eval "$DRUSH_TEMP_COMMAND"
var_dump(\Drupal::service('file_system')->getTempDirectory());
var_dump("TEST2");
EOF

OR

DRUSH_TEMP_COMMAND=$(cat <<'END'
var_dump(\Drupal::service('file_system')->getTempDirectory());
var_dump("TEST");
END
); ./vendor/bin/drush php-eval "$DRUSH_TEMP_COMMAND"

@see https://stackoverflow.com/questions/2500436/how-does-cat-eof-work-in-bas...
@see https://stackoverflow.com/questions/1167746/how-to-assign-a-heredoc-valu...

🇦🇺Australia silverham

FYI module doesn't seem very stable.
Filter can only added AFTER a relationship has been saved and the view saved, and the relationship to the nodes must be the first one (instead of a relationship selector available).
The query parameter field is also not automatically populated.

🇦🇺Australia silverham

Rerolled #6 (->accessCheck(TRUE)), my local composer wasn't applying the patch for some reason.

🇦🇺Australia silverham

+1 to this. I also have issues loading the temporary parent node entity in hook_field_widget_single_element_form_alter()

This work around for now is to use : $node = $parent_entity = $form_state->getFormObject()->getEntity();

Sample code below shows how to set the form default values as you enter paragraphs depending on how many.


/**
 * Implements hook_field_widget_single_element_PLUGIN_ID_form_alter().
 *
 * @see \Drupal\Core\Field\WidgetBase::formSingleElement()
 */
function my_module_field_widget_single_element_string_textfield_form_alter(array &$element, FormStateInterface $form_state, array $context) {
  $field_name = $context['items']->getName();
  $default_value = 'My default value to compare';
  if (($field_name == 'field_my_text_field')
    && ($context['items']->getEntity()->getEntityTypeId() == 'paragraph')
    && ($context['items']->getEntity()->bundle() == 'my_paragraph_type')) {
    $field_parents_no_subform = array_slice($element['#field_parents'], 0, -2);
    $parent_field_name = end($field_parents_no_subform);
    // Don't use $context['items']->getEntity()->getParentEntity()
    // it gets the current database node not the form temp node.
    // @see https://www.drupal.org/project/paragraphs/issues/3255456
    $parent_entity = $form_state->getFormObject()->getEntity();
    // Change new fields default to empty, by 
    if ($parent_entity->hasField($parent_field_name)) {
      $values = $parent_entity->get($parent_field_name)->getValue();
      if ((count($values) > 1) && ($element['value']['#default_value'] == $default_value)) {
        $element['value']['#default_value'] = '';
      }
    }
    // Change existing fields from default to empty.
    $input = $form_state->getUserInput();
    if (isset($input[$parent_field_name])) {
      $field_structure = array_merge(
        $element['#field_parents'],
        [
          $field_name,
          '0',
          'value',
        ]
      );
      // Get Value at
      // $input['field_parent'][$context['delta']]['subform'][$field_name]['0']['value'];.
      $current_value = NestedArray::getValue($input, $field_structure);
      if ($current_value == $default_value) {
        NestedArray::setValue($input, $field_structure, '');
        $form_state->setUserInput($input);
      }
    }
  }
}
🇦🇺Australia silverham

Updated patch to use a do a null check as per suggested : isset($this->connection) .

Didn't use isset($this->connectionHandle) in subclass is it is private (no subclass access to parent) and all sub-classes still use naming convention of $this->connection

🇦🇺Australia silverham

Interesting, I see that ftp_connect() and ssh2_connect() both return a non-NULL value, so FALSE or a resource object so an isset() check could work. I can redo patch later, or feel free to do yourself if you get to it first, no worries.

🇦🇺Australia silverham

This fix is now causing a regression, as $object->connect() is called recursively and nested calls to PHP magic methods with the same parameters are ignored by PHP engine. So Drupal\Core\FileTransfer\FTPExtension->connect() no longer works. @see 🐛 [regression] FTPExtension class can no longer connect as of 9.5.x Needs work .

Notice: Undefined property: Drupal\Core\FileTransfer\FTPExtension::$connection in Drupal\Core\FileTransfer\FTPExtension->connect() (line 16 of core/lib/Drupal/Core/FileTransfer/FTPExtension.php).

Production build 0.71.5 2024