public function ModuleHandlerInterface::loadInclude in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Core/Extension/ModuleHandlerInterface.php \Drupal\Core\Extension\ModuleHandlerInterface::loadInclude()
Loads a module include file.
Examples:
// Load node.admin.inc from the node module.
$this->loadInclude('node', 'inc', 'node.admin');
// Load content_types.inc from the node module.
$this->loadInclude('node', 'inc', ''content_types');
Parameters
string $module: The module to which the include file belongs.
string $type: The include file's type (file extension).
string $name: (optional) The base file name (without the $type extension). If omitted, $module is used; i.e., resulting in "$module.$type" by default.
Return value
string|false The name of the included file, if successful; FALSE otherwise.
1 method overrides ModuleHandlerInterface::loadInclude()
- ModuleHandler::loadInclude in src/
Extension/ ModuleHandler.php - Loads a module include file.
File
- lib/
Drupal/ Core/ Extension/ ModuleHandlerInterface.php, line 166 - Contains \Drupal\Core\Extension\ModuleHandlerInterface.
Class
- ModuleHandlerInterface
- Interface for classes that manage a set of enabled modules.
Namespace
Drupal\Core\ExtensionCode
public function loadInclude($module, $type, $name = NULL);