My Drupal Core Contributions for week-ending July 19th, 2024
Don’t shower yet, Mark, you’re not finished.
Published: July 19, 2024
I think I need a shower after all that.Oh really? Yeah, remember that cool merge request from 2 weeks ago to set the dates for each node in Umami to a unique date? Well, that also has a failing test. But only if you install Umami using Spanish as the default language.Thanks to Code Enigma for sponsoring my time to go through this masochism 😀
The current state of Drupal AI Keep an eye out for future growth in AI personalisation, where content suggestions will be provided based on user preferences and viewing history.Across the board, there is…
Dries Buytaert: I started Drupal, and when other people got involved, Drupal was really a CMS that was built by developers, for developers. I’m a developer; I started Drupal for myself, and then…
View notes of previous months’ calls.Join us THURSDAY, May 15 at 1pm ET / 10am PT, for our regularly scheduled call to chat about all things Drupal and nonprofits. (Convert to your local time…
Fellow Drupalists!At the heart of the Ripple Makers transformation is a commitment to fostering deeper connections with each and every member of our community, recognizing the invaluable role that sustaining donors play in…
The initial members include: The council has been meeting monthly to receive updates from myself and the Drupal Starshot Leadership Team. Members will provide feedback on project initiatives, offer recommendations, and share insights…
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…