You are here

public function Extension::load 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::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 143
Contains \Drupal\Core\Extension\Extension.

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;
}