Skip to content

Instantly share code, notes, and snippets.

@aklump
Created March 28, 2024 00:38
Show Gist options
  • Save aklump/d07c4ad9d27d641c5293d10a515d921f to your computer and use it in GitHub Desktop.
Save aklump/d07c4ad9d27d641c5293d10a515d921f to your computer and use it in GitHub Desktop.
Get any Drupal version.
$version = class_exists('\Drupal') ? Drupal::VERSION : NULL;
$version = $version ?? (defined('VERSION') ? constant('VERSION') : NULL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment