You are here

public function Extension::getExtensionPathname in Service Container 7.2

Same name and namespace in other branches
  1. 7 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

lib/Drupal/Core/Extension/Extension.php, line 122
Contains \Drupal\Core\Extension\Extension.

Class

Extension
Defines an extension (file) object.

Namespace

Drupal\Core\Extension

Code

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