W3cubDocs

/Drupal 8

public function Extension::load

public Extension::load()

Loads the main extension file, if any.

Return value

bool TRUE if this extension has a main extension file, FALSE otherwise.

File

core/lib/Drupal/Core/Extension/Extension.php, line 138

Class

Extension
Defines an extension (file) object.

Namespace

Drupal\Core\Extension

Code

public function load() {
  if ($this->filename) {
    include_once $this->root . '/' . $this->getPath() . '/' . $this->filename;
    return TRUE;
  }
  return FALSE;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Extension!Extension.php/function/Extension::load/8.1.x