Then I had a look at some Umami issues. Well, I say “some”, but one that I had planned to work on had already been fixed and the one I actually worked on turned out to be a monster issue from almost 5 years ago that hasn’t had any work on it in over 4 years, so digging through the issue and all the comments and talk about IE11 support made for great fun. It’s a very important issue and marked as “major” so it was great to get time to work on it. The issue is about creating an accessible dropdown menu for the language switcher in Umami rather than just listing all the languages as we currently do. I started from scratch again with this one since things have moved on so much in the past few years in Drupal frontend. We now have what I think is a pretty good merge request for this, or will at least give us a decent base to work from.I spent a decent amount of time going through and – thankfully – clearing out the issue queue for the Content Access by Path module. This involved:
Similar Posts
Linux Commands frequently used by Linux Sysadmins – Part 1
What are some Linux commands used by Sysadmins and power users daily? In this article, I’ve listed 10 such commands frequently used. Suggestions and feedback are welcome. Also, see Part 2, Part 3, Part…
a unique tool for efficient content management
If you would also like to make this workspace hierarchically belong to another, use the “Parent” dropdown. For example, if you select “Stage” there, all the changes from “Stage” will be inherited by…
atop for Linux server performance analysis (Guide)
atop -m Additional examples of using the ‘atop’ command for Linux server performance analysis: atop -c atop is an ASCII full-screen performance monitor that can log and report the activity of all server…
VCF, NSX, SD-WAN, AWS – LAB2PROD
NSX-ALB August 30, 2022 HomeLab 2022: VCF, NSX, SD-WAN, AWS Architecture and Hardware Refresh I get asked about my homelab quite a bit, so this post details the recent architecture and hardware changes…
Getting rid of cronner.module
Now I go ahead and start using this service. It quickly becomes obvious that some of the constants are also used in a map to display a human readable status to the user:…
Entity theming with Pinto | PreviousNext
namespace Drupalmy_project_profileEntityBlockContent; use DrupalbcaAttributeBundle; use Drupalmy_project_profileTraitsDescriptionTrait; use Drupalmy_project_profileTraitsImageTrait; use Drupalmy_project_profileTraitsTitleTrait; #[Bundle(entityType: self::ENTITY_TYPE_ID, bundle: self::BUNDLE)] final class Card extends MyProjectBlockContentBase { use TitleTrait; use DescriptionTrait; use ImageTrait; public const string BUNDLE = ‘card’; } Let’s set up our Card bundle class:EntityViewBuilders are PHP classes that contain logic on how to build (or…