public function Extension::getExtensionPathname in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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 122 - Contains \Drupal\Core\Extension\Extension.
Class
- Extension
- Defines an extension (file) object.
Namespace
Drupal\Core\ExtensionCode
public function getExtensionPathname() {
if ($this->filename) {
return $this
->getPath() . '/' . $this->filename;
}
}