alangasar / dm
Symfony var-dumper wrapper for Drupal 8
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Type:drupal-module
Requires
- symfony/var-dumper: ~2.7|^3|^4
This package is auto-updated.
Last update: 2024-11-06 11:34:26 UTC
README
Examples
<?php $node = Node::load(1); #Print $node dump to screen dm($node); #Print $node dump to system watchdog wdm($node); function wdm($object, $type = 'wdm'){ \Drupal::logger($type)->notice('<pre><code>' . print_r($object, TRUE) . '</code></pre>' ); }
Or in twig file:
{{ dm(node) }}
Install
composer require alangasar/dm