function Extension::getExtensionPathname
Returns the relative path of the main extension file, if any.
Return value
string|null
1 method overrides Extension::getExtensionPathname()
- DatabaseDriver::getExtensionPathname in core/
lib/ Drupal/ Core/ Extension/ DatabaseDriver.php  - Returns the relative path of the main extension file, if any.
 
File
- 
              core/
lib/ Drupal/ Core/ Extension/ Extension.php, line 130  
Class
- Extension
 - Defines an extension (file) object.
 
Namespace
Drupal\Core\ExtensionCode
public function getExtensionPathname() {
  if ($this->filename) {
    return $this->getPath() . '/' . $this->filename;
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.