class Extension
Same name in this branch
- 11.1.x vendor/phar-io/manifest/src/values/Extension.php \PharIo\Manifest\Extension
- 11.1.x vendor/mglaman/phpstan-drupal/src/Drupal/Extension.php \mglaman\PHPStanDrupal\Drupal\Extension
- 11.1.x vendor/symfony/http-kernel/DependencyInjection/Extension.php \Symfony\Component\HttpKernel\DependencyInjection\Extension
- 11.1.x vendor/symfony/dependency-injection/Extension/Extension.php \Symfony\Component\DependencyInjection\Extension\Extension
- 11.1.x core/modules/system/src/Plugin/migrate/source/Extension.php \Drupal\system\Plugin\migrate\source\Extension
Defines an extension (file) object.
This class does not implement the Serializable interface since problems occurred when using the serialize method.
Hierarchy
- class \Drupal\Core\Extension\Extension
Expanded class hierarchy of Extension
See also
https://bugs.php.net/bug.php?id=66052
14 files declare their use of Extension
- ComponentNegotiator.php in core/
lib/ Drupal/ Core/ Theme/ ComponentNegotiator.php - DrupalKernel.php in core/
lib/ Drupal/ Core/ DrupalKernel.php - GenerateTheme.php in core/
lib/ Drupal/ Core/ Command/ GenerateTheme.php - InstallStorage.php in core/
lib/ Drupal/ Core/ Config/ InstallStorage.php - LinkRelationTypeManager.php in core/
lib/ Drupal/ Core/ Http/ LinkRelationTypeManager.php
14 string references to 'Extension'
- Application::writePharExtensionInformation in vendor/
phpunit/ phpunit/ src/ TextUI/ Application.php - @psalm-param ?list<string> $pharExtensions
- Bundle::getContainerExtensionClass in vendor/
symfony/ http-kernel/ Bundle/ Bundle.php - Returns the bundle's container extension class.
- ContainsElement::getExtensionElement in vendor/
phar-io/ manifest/ src/ xml/ ContainsElement.php - ConvertImageEffect::submitConfigurationForm in core/
modules/ image/ src/ Plugin/ ImageEffect/ ConvertImageEffect.php - d6_language_content_menu_settings.yml in core/
modules/ language/ migrations/ d6_language_content_menu_settings.yml - core/modules/language/migrations/d6_language_content_menu_settings.yml
File
-
core/
lib/ Drupal/ Core/ Extension/ Extension.php, line 13
Namespace
Drupal\Core\ExtensionView source
class Extension {
/**
* The type of the extension (e.g., 'module').
*
* @var string
*/
protected $type;
/**
* The relative pathname of the extension (e.g., 'core/modules/node/node.info.yml').
*
* @var string
*/
protected $pathname;
/**
* The filename of the main extension file (e.g., 'node.module').
*
* @var string|null
*/
protected $filename;
/**
* An SplFileInfo instance for the extension's info file.
*
* Note that SplFileInfo is a PHP resource and resources cannot be serialized.
*
* @var \SplFileInfo
*/
protected $splFileInfo;
/**
* The app root.
*
* @var string
*/
protected $root;
/**
* The extension info array.
*/
public array $info;
/**
* Constructs a new Extension object.
*
* @param string $root
* The app root.
* @param string $type
* The type of the extension; e.g., 'module'.
* @param string $pathname
* The relative path and filename of the extension's info file; e.g.,
* 'core/modules/node/node.info.yml'.
* @param string $filename
* (optional) The filename of the main extension file; e.g., 'node.module'.
*/
public function __construct($root, $type, $pathname, $filename = NULL) {
// @see \Drupal\Core\Theme\ThemeInitialization::getActiveThemeByName()
assert($pathname === 'core/core.info.yml' || $pathname[0] !== '/' && file_exists($root . '/' . $pathname), sprintf('The file specified by the given app root, relative path and file name (%s) do not exist.', $root . '/' . $pathname));
$this->root = $root;
$this->type = $type;
$this->pathname = $pathname;
$this->filename = $filename;
}
/**
* Returns the type of the extension.
*
* @return string
*/
public function getType() {
return $this->type;
}
/**
* Returns the internal name of the extension.
*
* @return string
*/
public function getName() {
return basename($this->pathname, '.info.yml');
}
/**
* Returns the relative path of the extension.
*
* @return string
*/
public function getPath() {
return dirname($this->pathname);
}
/**
* Returns the relative path and filename of the extension's info file.
*
* @return string
*/
public function getPathname() {
return $this->pathname;
}
/**
* Returns the filename of the extension's info file.
*
* @return string
*/
public function getFilename() {
return basename($this->pathname);
}
/**
* Returns the relative path of the main extension file, if any.
*
* @return string|null
*/
public function getExtensionPathname() {
if ($this->filename) {
return $this->getPath() . '/' . $this->filename;
}
}
/**
* Returns the name of the main extension file, if any.
*
* @return string|null
*/
public function getExtensionFilename() {
return $this->filename;
}
/**
* Loads the main extension file, if any.
*
* @return bool
* TRUE if this extension has a main extension file, FALSE otherwise.
*/
public function load() {
if ($this->filename) {
include_once $this->root . '/' . $this->getPath() . '/' . $this->filename;
return TRUE;
}
return FALSE;
}
/**
* Returns SplFileInfo instance for the extension's info file.
*
* @return \SplFileInfo
* The object to access a file information of info file.
*
* @see https://www.php.net/manual/class.splfileinfo.php
*/
public function getFileInfo() : \SplFileInfo {
if (!isset($this->splFileInfo)) {
$this->splFileInfo = new \SplFileInfo($this->root . '/' . $this->pathname);
}
return $this->splFileInfo;
}
/**
* Magic method implementation to serialize the extension object.
*
* @return array
* The names of all variables that should be serialized.
*/
public function __sleep() : array {
// @todo \Drupal\Core\Extension\ThemeExtensionList is adding custom
// properties to the Extension object.
$properties = get_object_vars($this);
// Don't serialize the app root, since this could change if the install is
// moved. Don't serialize splFileInfo because it can not be.
unset($properties['splFileInfo'], $properties['root']);
return array_keys($properties);
}
/**
* Magic method implementation to unserialize the extension object.
*/
public function __wakeup() : void {
// Get the app root from the container. While compiling the container we
// have to discover all the extension service files in
// \Drupal\Core\DrupalKernel::initializeServiceProviders(). This results in
// creating extension objects before the container has the kernel.
// Specifically, this occurs during the call to
// \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory().
$container = \Drupal::hasContainer() ? \Drupal::getContainer() : FALSE;
$this->root = $container && $container->hasParameter('app.root') ? $container->getParameter('app.root') : DRUPAL_ROOT;
}
/**
* Checks if an extension is marked as experimental.
*
* @return bool
* TRUE if an extension is marked as experimental, FALSE otherwise.
*/
public function isExperimental() : bool {
return isset($this->info[ExtensionLifecycle::LIFECYCLE_IDENTIFIER]) && $this->info[ExtensionLifecycle::LIFECYCLE_IDENTIFIER] === ExtensionLifecycle::EXPERIMENTAL;
}
/**
* Checks if an extension is marked as obsolete.
*
* @return bool
* TRUE if an extension is marked as obsolete, FALSE otherwise.
*/
public function isObsolete() : bool {
// This function checks for 'lifecycle: obsolete' to determine if an
// extension is marked as obsolete.
return isset($this->info[ExtensionLifecycle::LIFECYCLE_IDENTIFIER]) && $this->info[ExtensionLifecycle::LIFECYCLE_IDENTIFIER] === ExtensionLifecycle::OBSOLETE;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
Extension::$filename | protected | property | The filename of the main extension file (e.g., 'node.module'). | |
Extension::$info | public | property | The extension info array. | |
Extension::$pathname | protected | property | The relative pathname of the extension (e.g., 'core/modules/node/node.info.yml'). | |
Extension::$root | protected | property | The app root. | |
Extension::$splFileInfo | protected | property | An SplFileInfo instance for the extension's info file. | |
Extension::$type | protected | property | The type of the extension (e.g., 'module'). | |
Extension::getExtensionFilename | public | function | Returns the name of the main extension file, if any. | 1 |
Extension::getExtensionPathname | public | function | Returns the relative path of the main extension file, if any. | 1 |
Extension::getFileInfo | public | function | Returns SplFileInfo instance for the extension's info file. | |
Extension::getFilename | public | function | Returns the filename of the extension's info file. | 1 |
Extension::getName | public | function | Returns the internal name of the extension. | 1 |
Extension::getPath | public | function | Returns the relative path of the extension. | 1 |
Extension::getPathname | public | function | Returns the relative path and filename of the extension's info file. | 1 |
Extension::getType | public | function | Returns the type of the extension. | |
Extension::isExperimental | public | function | Checks if an extension is marked as experimental. | 1 |
Extension::isObsolete | public | function | Checks if an extension is marked as obsolete. | 1 |
Extension::load | public | function | Loads the main extension file, if any. | 1 |
Extension::__construct | public | function | Constructs a new Extension object. | 1 |
Extension::__sleep | public | function | Magic method implementation to serialize the extension object. | |
Extension::__wakeup | public | function | Magic method implementation to unserialize the extension object. |