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

1
2
3
4
5
6
7
public function load() {
  if ($this->filename) {
    include_once $this->root . '/' . $this->getPath() . '/' . $this->filename;
    return TRUE;
  }
  return FALSE;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.