You are here

public function Extension::getPath in Zircon Profile 8

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

Returns the relative path of the extension.

Return value

string

2 calls to Extension::getPath()
Extension::getExtensionPathname in core/lib/Drupal/Core/Extension/Extension.php
Returns the relative path of the main extension file, if any.
Extension::load in core/lib/Drupal/Core/Extension/Extension.php
Loads the main extension file, if any.

File

core/lib/Drupal/Core/Extension/Extension.php, line 95
Contains \Drupal\Core\Extension\Extension.

Class

Extension
Defines an extension (file) object.

Namespace

Drupal\Core\Extension

Code

public function getPath() {
  return dirname($this->pathname);
}