Account created on 1 April 2013, about 12 years ago
#

Merge Requests

Recent comments

🇨🇦Canada No Sssweat

OR the remove code that is creating the duplicate tab approach

🇨🇦Canada No Sssweat

The Content Moderation checking approach, improved.

🇨🇦Canada No Sssweat

The Content Moderation checking approach.

🇨🇦Canada No Sssweat

Patch in #7 applied but didn't do what is was suppose to.

I tried placing user role weight as last and also as first and still cannot delete files.

Patch needs work.

🇨🇦Canada No Sssweat

I added a bunch more URLs and in the logs those don't show. Def some caching happening here despite trying to flush all caches and even uninstalling and reinstalling the module.

🇨🇦Canada No Sssweat

I noticed in the log it doesn't show *.google.com in the allowed list, yet I do have it in my config.

For testing purposes, I changed it to '*.google.com' and did some test, changed it back to *.google.com without the quotes and I noticed it was showing '*.google' in the logs.

Seems to me there is some sort caching problem or google.com is getting stripped for some reason.

🇨🇦Canada No Sssweat

No Sssweat changed the visibility of the branch 3365305-ckeditor-5 to hidden.

🇨🇦Canada No Sssweat

No Sssweat changed the visibility of the branch 3365305-ckeditor-5 to active.

🇨🇦Canada No Sssweat

No Sssweat changed the visibility of the branch 3365305-ckeditor-5 to hidden.

🇨🇦Canada No Sssweat

No Sssweat made their first commit to this issue’s fork.

🇨🇦Canada No Sssweat

@lymannx, no. This one is different. You can read about it here

Other known modules affected:

- webform
- leaflet
- sitewide_alert

🇨🇦Canada No Sssweat

Providing some guidance on how this library gets loaded since no one has yet.

Check if in /admin/structure/webform/config/libraries, Choices is enabled.

However, this setting alone won't cause the library to get loaded.

In order for it to load, a select element/field needs to have Choices checked in it's config.

The fix is either update the module to the latest version OR make sure Choices is unchecked in /admin/structure/webform/config/libraries

🇨🇦Canada No Sssweat

I find it hard to believe that one has report this sooner.

I think it's a side effect of this other issue,

https://www.drupal.org/project/simplesamlphp_auth/issues/3340606#comment... 💬 Document simplesamlphp 2.x directory change (www to public) Active

🇨🇦Canada No Sssweat

The second patch from #6 introduces

Warning undefined variable $switcher_horizontal_position and $switcher_vertical_position

$float_position = $settings->get('float_position');

Float position will never be an array and will always be a string since you can only select one. Therefore,

if(is_array($float_position)){

Is not necessary and it's introducing the undefined variables as it will never pass this check.

Use the first patch from comment #2 if anything.

I have not been able to reproduce the bug. Might want to add the steps to reproduce.

🇨🇦Canada No Sssweat

Commited to the Dev branch and created new 1.3.0-beta1 release.

🇨🇦Canada No Sssweat

Thanks #8 did the trick, but needed a tweak for the .module code

<?php

use Drupal\user_module\YourCustomFormAlterBuilder;

function user_module_form_FORM_ID_alter(&$form, $form_state) {
  $form['#pre_render'][] = [new YourCustomFormAlterBuilder, 'preRender'];
}
🇨🇦Canada No Sssweat

With

$output = \Drupal::service('renderer')->render(['#markup' => $thing]);

I got a

Error: Drupal\Core\Render\Renderer::render(): Argument #1 ($elements) cannot be passed by reference incam_preprocess_page()

Had to

  $render_array = [
    '#markup' => $thing
  ];
  $footer_contact = \Drupal::service('renderer')->render($render_array);
🇨🇦Canada No Sssweat

1. Config needs to be inside the /config/install or config/optional folder.
2. It needs have system in the config name, system.action.node_example_action.yml

🇨🇦Canada No Sssweat

As mentioned a newer D10 version has been released.

🇨🇦Canada No Sssweat

As mentioned in comment #6, because of the different kernel events. Different values end up being passed to the error and the warning lines.

One of these values is an empty revisions array and a node object as a revision id instead of a string or int.

This might not be the optimal solution, but I manage to get passed those by checking if it's not empty.

🇨🇦Canada No Sssweat

After upgrading from PHP 7.4 to 8.1

I am also seeing the type error and the array flip warning that comment #5 mentions with Drupal 9.5.11

TypeError: Illegal offset type in Drupal\Core\Entity\ContentEntityStorageBase->loadRevision() (line 636 of /var/www/html/web/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php)

Warning: array_flip(): Can only flip string and integer values, entry skipped in Drupal\Core\Entity\ContentEntityStorageBase->loadMultipleRevisions() (line 667 of /var/www/html/web/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php)

Going through the code in xdebug for some reason with PHP 8.1 it triggers different kernel events compared to 7.4 with the same codebase and DB.

7.4 does a kernerl.response while 8.1 does a kernel.controller event.

Also 7.4 has more service definitions while 8.1 has less (802 vs 754)

🇨🇦Canada No Sssweat

No Sssweat made their first commit to this issue’s fork.

🇨🇦Canada No Sssweat

The problem is that the [current-user:display-name] token always uses the current logged in user.

To solve this issue, we can add the user ID as part of the path to the certificate pdf route. Then use the user ID in the path to get the user's name.

You will have to use the new token, [opigno_certificate:user_name]

This will involve patching multiple Opigno modules.

🇨🇦Canada No Sssweat

Ooops, we were looking at this at the same time.

🇨🇦Canada No Sssweat

My appologies, I misread your objective. We are on the same page

🇨🇦Canada No Sssweat

Try installing in D8 versions < 8.8

1) You shouldn't be using D8 as its deprecated and no longer supported by the Drupal security team.

2) If anyone is still using D8, they should atleast be using the latest version 8.9.8 for security sakes.

🇨🇦Canada No Sssweat

Please be more specific, what exactly is "not working"?

🇨🇦Canada No Sssweat

There is currently no Drupal 10 branch for this module.

🇨🇦Canada No Sssweat

1) First, this depends this other issue getting fixed, https://www.drupal.org/project/opigno_learning_path/issues/3336036 🐛 Re-arraging the learning path Form Display fields causes, TypeError: key(): Argument #1 ($array) must be of type array, null given in key() (line 462 of modules/contrib/entity_browser/src/Plugin/Field/FieldWidget/EntityReferenceBrowserWidget.php). Needs review

However, you can manually fix that issue by going to /admin/group/types/manage/learning_path/form-display and correcting the "Duration" field widget to "autocomplete"

2) You will have to manually add/create the checkbox (boolean) field, since you can't use the "part-2-of" patch, with the following values

3) Apply the "part-1-of" & "part-3-of" patches.

🇨🇦Canada No Sssweat

I have created 3 patches that adds this functionality.

However, the patch that starts with part-2-of-... must not be used on a live site.
This is because it contains a DB update code, and the update number needs to be agreed upon with the module's maintainer. Therefore, this can likely cause future DB updates not to run.

(If you would like to use this feature on a live site, see my next comment, #4)

These patches will create a new checkbox field in the training edit form/page.

and when that is checked, it will allow user to un-enroll for that particular training.

🇨🇦Canada No Sssweat

MR created, please review.

🇨🇦Canada No Sssweat

As the error alludes to, it's due to not having the entity revision key.

Adding $data['shurly']['table']['entity revision'] = FALSE; will fix the issue.

🇨🇦Canada No Sssweat

Patch doesn't apply for 9.5.2

Why bother? It has been 16 years...

Clearly this tells me that this just a "nice to have" feature that most people are living happily without.

Also, it seems there are a lot of hoops, walls and gates to jump through to get this into core.

This should've been moved into contrib or scrapped all together a long time ago.

🇨🇦Canada No Sssweat

"follow"/"following" would work well.

Hmm... that sounds weird to me because of social media.

In my opinion, it be better to say, please "visit" or "go to".

🇨🇦Canada No Sssweat

Turns out can't add to the conditional with making the conditional significantly more complex.

So I added a 1 liner conditional before it.

🇨🇦Canada No Sssweat

Looking at the form validate function, I can see there is already a trim there, but unfortunately it does not get set.

We could add $form_state->setValue('shurly_base', $custom_base_url); and do away with the trim() located in the .module file. However if there is an existing site that happens to have white spaces around it, it will get screwed.

So I agree, lets move the trim inside the check/if condition.

🇨🇦Canada No Sssweat

Update to 3.0.4 as that version has it.

🇨🇦Canada No Sssweat

Sounds like a bug.

I will check soon if this issue still persists in the latest version as of this writing, 3.0.4

🇨🇦Canada No Sssweat

MR created for both 3.x and 3.x-dev branches.

🇨🇦Canada No Sssweat

No Sssweat made their first commit to this issue’s fork.

🇨🇦Canada No Sssweat

Now I am getting

Error: Call to a member function addError() on null in Drupal\elastic_email\Plugin\Mail\ElasticEmailMailSystem->elasticEmailSend() (line 218 of modules/contrib/elastic_email/src/Plugin/Mail/ElasticEmailMailSystem.php).

I just created a dummy account. If it worked correctly, I should be getting a Drupal message saying that I am not allowed to send from that domain (or something along those lines).

Feel free to use my dummy creds:
nosssweat2016@gmail.com
EAF003414250AA789448DE0DC4963AACCBBD68809BCC30A5C87F747C5DB23AB78781FDC2A2FC2336D5D96F639ED86DD4

🇨🇦Canada No Sssweat

As mentioned that patch was for a different version of Drupal.

🇨🇦Canada No Sssweat

When I click the submit button (to send the test e-mail), now I am getting:

InvalidArgumentException: Invalid value for enum '\ElasticEmail\Model\BodyContentType', must be one of: 'HTML', 'PlainText', 'AMP', 'CSS' in ElasticEmail\ObjectSerializer::sanitizeForSerialization() (line 98 of /app/vendor/elasticemail/elasticemail-php/lib/ObjectSerializer.php).

Production build 0.71.5 2024