function Extension::load
Loads the main extension file, if any.
Return value
bool TRUE if this extension has a main extension file, FALSE otherwise.
1 method overrides Extension::load()
- DatabaseDriver::load in core/
lib/ Drupal/ Core/ Extension/ DatabaseDriver.php - Loads the main extension file, if any.
File
-
core/
lib/ Drupal/ Core/ Extension/ Extension.php, line 151
Class
- Extension
- Defines an extension (file) object.
Namespace
Drupal\Core\ExtensionCode
public function load() {
if ($this->filename) {
include_once $this->root . '/' . $this->getPath() . '/' . $this->filename;
return TRUE;
}
return FALSE;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.