Drupal

Entity Reference Display in Views
| 3 min read
In Drupal, the default behaviour of entity reference fields allows us to select unpublished content if the content creator has permission to view unpublished content, which can be useful in specific scenarios where we need to establish relationships even with unpublished content. However, in many cases, we want to refer only to published content. The problem arises when we add references during content creation without verifying whether the referenced items are published. This can lead to confusion later when we wonder why the referenced contents are not visible when viewing the content. Here's a step-by-step guide on how to use a Drupal view to filter the values appearing in an entity reference field
Drupal Logo
| 5 min read
The release of Drupal 10.1 brings a range of new features and enhancements, solidifying its position as a top choice for organizations seeking a Digital Experience Platform (DXP) for their corporate websites. Drupal 10.1 is the first release after the Digital Public Good Alliance (DPGA) recognized Drupal as a Digital Public Good. As a platform trusted by entities like the United Nations, governments, and major corporations, Drupal's affordability and powerful capabilities have made it a compelling choice. In this article, we will delve into three key features of Drupal 10.1 that make it an excellent option for those looking to implement a digital experience platform for their organization.
Back-To-Work program for women
| 10 min read
ICFOSS and Zyxware Technologies organized the 5th season of the "Back-To-Work" program for women, with the topic being "Building digital experiences with Drupal". As part of the event, The Director of Programs at the Drupal Association, Von R. Eaton, gave a presentation covering various aspects of Drupal, Drupal.org, and the Drupal Association, followed by a question and answer session with participants. The questions addressed topics such as the cost of Drupal, the necessary skills to work in the Drupal Association, mentoring opportunities, and payment for freelancers contributing to Drupal.
Drupal Logo
| 5 min read
entityQuery is one of the most used functions in Drupal. It helps you easily pull Drupal entities in code. But when you use this in contexts other than controllers, say in cron-jobs or update hooks where the system is accessed as anonymous users, it may not work as expected in Drupal 9 Unless you call accessCheck explicitly. This short article talks about how to use entityQuery in these contexts and write entityQuery compatible with Drupal 10.x