Skip to main content
Home
Drupal life hacks

Main navigation

  • Drupal
  • React
  • WP
  • Contact
  • About
User account menu
  • Log in

Breadcrumb

  1. Home

#Drupal Planet

By admin, 19 July, 2025

What’s New in Drupal 11.3: YAML Content Export Built Into Core

New in Drupal 11: Export Content to YAML with the content:export Command

 

With the release of Drupal 11.3.0, a powerful new tool has landed in core: the content:export Drush command. This feature simplifies how developers generate YAML-formatted content for installation recipes, testing, and automation pipelines.

Tags

  • #Drupal Planet
By admin, 11 July, 2025

How to Integrate Google Cloud Storage with Drupal: Step-by-Step Guide

Modern websites often need scalable and reliable file storage solutions for images, videos, PDFs, and other assets. One of the best tools for this is Google Cloud Storage (GCS). In this article, we’ll show you how to integrate GCS with Drupal so that all your files are stored and served directly from Google’s cloud infrastructure.


Why Use Google Cloud Storage?

Google Cloud Storage offers:

Tags

  • #Drupal Planet
  • Google Cloud Platform
By admin, 4 July, 2025

Object-Oriented Form API in Drupal 11

✅ Disclaimer

This article summarizes exploratory ideas regarding an object-oriented approach to form/render arrays in Drupal.

⚠ Important Notes

  • This content is not an official description of Drupal 11 features.

  • The information presented here may:

Tags

  • #Drupal Planet
By admin, 28 June, 2025

Drupal 11.2 Hook Migration Guide: Modernize Your Module’s Hooks with Attributes

🔄 Updating hook_help() When Migrating from Drupal 8 to Drupal 11.2

With the release of Drupal 11.2, developers are encouraged to modernize their codebase by replacing legacy hooks with more structured, object-oriented alternatives. One of the most commonly used hooks in legacy modules is hook_help() — the function that adds helpful module documentation to the /admin/help page.

Tags

  • #Drupal Planet
  • Hooks
By admin, 26 June, 2025

Drupal Theming and Layout: When to Use Paragraphs, Layout Builder, or Twig Templates

In Drupal, Paragraphs, Layout Builder, and custom templates are all tools for controlling how content is structured and displayed — but they serve different purposes and are used in different contexts. Here's a clear breakdown of each and when to use them:


✅ 1. Paragraphs

❓ What it is:

The Paragraphs module lets site builders define reusable, flexible content components (like “Image + Text”, “Slider”, “Video”, etc.) that editors can mix and match in a structured way within content types.

Tags

  • #Drupal Planet
By admin, 26 June, 2025

Why More Indexes in MySQL Aren't Always Better

🛑 When Indexing Can Hurt MySQL Performance

Indexes usually improve query performance, but in some cases, they can actually make things worse. Here are the key situations:

Tags

  • #Drupal Planet
  • MySQL
By admin, 26 June, 2025

How to Efficiently Load and Process 10,000 Nodes in Drupal Without Killing Performance

If you need to retrieve data from 10,000 nodes in Drupal, the most efficient way is to load them in batches, not one-by-one in a loop and not all at once.

Tags

  • #Drupal Planet
By admin, 23 June, 2025

Mastering OOP and SOLID Principles in PHP with Drupal Examples: A Complete Guide

Object-Oriented Programming (OOP) is a programming paradigm based on the concept of "objects", which can contain data (fields, often called attributes or properties) and code (methods, which are functions associated with the object).

There are 4 main principles of OOP, often remembered by the acronym "PIES":

🔠 What is PIES?

PIES stands for the four core OOP principles:

Tags

  • #Drupal Planet
  • OOP
  • SOLID
By admin, 26 May, 2025

Combining Tailwind CSS and Bootstrap (Radix) in a Drupal Theme: A Step-by-Step Guide

Introduction

Modern frontend requirements in Drupal projects demand more flexibility, customization, and fast adaptation to design specifications. Tailwind CSS is a utility-first CSS framework that enables developers to build unique UI solutions quickly and precisely without writing extra CSS. However, many Drupal projects still use the Radix theme, which is based on Bootstrap—a reliable framework with a rich set of ready-made components.

In this article, we'll cover:

Tags

  • #Drupal Planet
  • Tailwind
  • Bootstrap
  • Radix
By admin, 10 April, 2025

Laravel for Drupal Developers: Comparing Eloquent and Entity API

Direct comparison between Laravel (Eloquent) and Drupal (Entity API) — especially useful if you're coming from a Drupal background and exploring Laravel.

🔁 Laravel Eloquent vs Drupal Entity API

✅ Fetching filtered content

Laravel:

$tasks = Task::where('completed', true)->get();

Drupal:

Tags

  • #Drupal Planet
  • Laravel
  • Eloquent

Pagination

  • Previous page
  • 4
  • Next page
#Drupal Planet
Powered by Drupal