Skip to main content
Drupal is a registered trademark of Dries Buytaert
Release: OpenID Connect / OAuth client 3.0.0-alpha9 New alpha version released for module openid_connect (3.0.0-alpha9). Release: Opensolr Search 4.5.0 Minor update available for module opensolr_search (4.5.0). Release: Timelinr 1.0.1 Minor update available for module timelinr (1.0.1). Usage Milestone: Simplify Module simplify crossed 10,000 active installs. Usage Milestone: Views Reference Filter Module entityreference_filter crossed 10,000 active installs. Usage Milestone: Dropdown Language Module dropdown_language crossed 10,000 active installs. Usage Milestone: Paragraphs Browser Module paragraphs_browser crossed 10,000 active installs. Usage Milestone: OpenAPI Module openapi crossed 10,000 active installs. Usage Milestone: Decoupled Router Module decoupled_router crossed 10,000 active installs. Module Revived: Entityqueue Buttons 1.1.2 Module entityqueue_buttons updated after 8 months of inactivity (1.1.2).

Devel Kint Extras

5,113 sites Security covered Drupal 9–11 Devel ecosystem
View on drupal.org

This module was intended to add extra features to Devel's Kint integration, specifically to display available methods and static properties of objects. However, this functionality has been removed from Devel and is now obsolete. For a similar experience, users are advised to install the standalone Kint module.

This module was made specifically to enhance Devel's Kint integration. That Kint integration was removed from Devel in v5.4.0, however, so this module is now obsolete. Instead, you can install the standalone Kint module. More information can be found in the change record.

This module offers to display methods and statics available for an object when using Kint. It was created because the Devel module maintainers decided to remove the Kint plugins responsible for showing object available methods and static class properties in version 3.0 of the module (the relevant issue).

What's the catch?

The biggest reason to remove these plugins was to prevent out-of-memory errors. So, to make sure you don't run into these when using this module, make sure to add the following snippet to your settings.php/local.settings.php:

if (class_exists('Kint')) {
  // Change the maximum depth to prevent out-of-memory errors.
  \Kint::$max_depth = 4;
}

In Kint 4 this setting was renamed, so if you're using that version use the following snippet:

if (class_exists('Kint')) {
  // Change the maximum depth to prevent out-of-memory errors.
  \Kint::$depth_limit= 4;
}

Configuration

Enable the module as usual. This will replace the default Kint dumper and should work without any other configuration.

Depends on

Dependencies of the latest stable release

Required by

Tracked projects that depend on this one

No tracked projects depend on this one yet.

Activity

Tracked releases
4
Tracked since
Nov 2024
Latest release
10 months ago
Releases (12 mo)
2
Maintenance
Slowing

Release Timeline

Releases

Version Type Core Release date
1.1.6 Stable 9–11 Oct 9, 2025
1.1.5 Stable 9–11 Oct 8, 2025
1.1.4 Stable 9–11 Mar 3, 2025
1.1.3 Stable 9–11 Nov 29, 2024