ExtensionType.php
Same filename in this branch
Same filename in other branches
Namespace
Drupal\Core\ThemeFile
-
core/
lib/ Drupal/ Core/ Theme/ ExtensionType.php
View source
<?php
namespace Drupal\Core\Theme;
/**
* Enum for supported extension types.
*
* @todo Replace this enum with Drupal\Core\Extension\ExtensionTypeInterface.
* @see https://www.drupal.org/i/3352546
*
* @internal
*/
enum ExtensionType : string
{
case Module = 'module';
case Theme = 'theme';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.