You are here

public function Extension::getExtensionPathname in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Extension/Extension.php \Drupal\Core\Extension\Extension::getExtensionPathname()

Returns the relative path of the main extension file, if any.

Return value

string|null

File

core/lib/Drupal/Core/Extension/Extension.php, line 124

Class

Extension
Defines an extension (file) object.

Namespace

Drupal\Core\Extension

Code

public function getExtensionPathname() {
  if ($this->filename) {
    return $this
      ->getPath() . '/' . $this->filename;
  }
}