Extension::getExtensionPathname

public 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 117

Class

Extension
Defines an extension (file) object.

Namespace

Drupal\Core\Extension

Code

public function getExtensionPathname() {
  if ($this->filename) {
    return $this->getPath() . '/' . $this->filename;
  }
}
doc_Drupal
2016-10-29 09:09:38
Comments
Leave a Comment

Please login to continue.