function 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 145 
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.
