Skip to main content
Fetch Node Field Value Programmatically

Get Node Field Value Programmatically in Drupal 10

As a Drupal developer, I worked on many projects that required me to dive deep into Drupal's core APIs. One common task is to get node field value programmatically. In Drupal 10, this task has become more straightforward and powerful, thanks to the robust Entity API and Typed Data API.

In this guide, I’ll walk you through all possible ways to get node field values programmatically in Drupal 10. We’ll cover several methods, ensuring that we have a comprehensive understanding of how to get done.

 

Why Fetch Node Field Values Programmatically?

Before diving into the code, let's understand why you might need to fetch node field values programmatically. Here are a few scenarios:

  • Custom Module Development: When developing custom modules, you might need to fetch and manipulate node data to implement specific functionalities.
  • Theming: In custom themes, you might want to display node field values in a particular way that isn’t achievable through the standard template.
  • Performance Optimization: Sometimes, retrieving specific field values programmatically can be more performant than rendering the entire node object.


Getting Started


Before we begin, ensure that you have a working Drupal 10 installation and that you have some content types with fields created. If you are new to Drupal or need a refresher, the Drupal documentation is an excellent resource.

Now, let’s dive into the code.

Method 1: Using the Entity API

First, you need to load the node. You can do this using the \Drupal\node\Entity\Node::load() method.

use \Drupal\node\Entity\Node;

// Load node with ID 1.
$nid = 1;
$node = Node::load($nid);
// Get the field value.
$field_value = $node->get('field_name')->value;

// Print the field value to see the output.
\Drupal::messenger()->addMessage($field_value);

 

Method 2: Using the Typed Data API

The Typed Data API provides a more flexible way to work with field values, especially when dealing with complex data structures. Load the node as shown in the previous method.

use \Drupal\node\Entity\Node;

// Load node with ID 1.
$nid = 1;
$node = Node::load($nid);
// Get the field data.
$field_data = $node->get('field_name')->getValue();

// Print the field data.
\Drupal::messenger()->addMessage(print_r($field_data, TRUE));

The getValue() method returns an array of all the field’s data. This is useful for fields that store multiple values, such as multi-value fields or entity reference fields.

 

Method 3: Using EntityFieldManager Service

The entity_field.manager service can be used to get information about entity fields. Load the node as previously demonstrated.

use \Drupal\node\Entity\Node;
use \Drupal::service;

// Load node with ID 1.
$nid = 1;
$node = Node::load($nid);

// Get the field definitions for node entities.
$field_definitions = service('entity_field.manager')->getFieldDefinitions('node', 'article');

// Get the field value using the field definition.
$field_name = 'field_custom_text';
if (isset($field_definitions[$field_name])) {
    $field_value = $node->get($field_name)->value;
    \Drupal::messenger()->addMessage($field_value);
}

 

Fetching node field values programmatically in Drupal 10 is a powerful technique that can be used in various scenarios, from custom module development to theming and performance optimization. In this tutorial, we’ve covered several methods, each with its own advantages:

  • Entity API: The most straightforward and commonly used method.
  • Typed Data API: Offers more flexibility and is useful for complex data structures.
  • EntityFieldManager Service: Useful for interacting with field metadata.

Understanding and utilizing these methods can enhance your Drupal development skills and build more dynamic and powerful applications. Remember, the key to mastering Drupal is experimenting and exploring its vast APIs and features.

For further reading and resources, please check out the Drupal official documentation