-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WV-4745: Add mudule_hander service trait.
- Loading branch information
Lio Novelli
committed
Nov 17, 2021
1 parent
97169ab
commit 5d7fe43
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
|
||
namespace drunomics\ServiceUtils\Core\Extension; | ||
|
||
use Drupal\Core\Extension\ModuleHandlerInterface; | ||
|
||
/** | ||
* Allows setter injection and simple usage of the service. | ||
*/ | ||
trait ModuleHandlerTrait { | ||
|
||
/** | ||
* The module handler. | ||
* | ||
* @var \Drupal\Core\Extension\ModuleHandlerInterface | ||
*/ | ||
protected $moduleHandler; | ||
|
||
/** | ||
* Sets the module handler. | ||
* | ||
* @param \Drupal\Core\Extension\ModuleHandlerInterface $moduleHandler | ||
* The module handler. | ||
* | ||
* @return $this | ||
*/ | ||
public function setModuleHandler(ModuleHandlerInterface $moduleHandler) { | ||
$this->moduleHandler = $moduleHandler; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Gets the module handler. | ||
* | ||
* @return \Drupal\Core\Extension\ModuleHandlerInterface | ||
* The module handler. | ||
*/ | ||
public function getModuleHandler() { | ||
if (empty($this->moduleHandler)) { | ||
$this->moduleHandler = \Drupal::service('module_handler'); | ||
} | ||
return $this->moduleHandler; | ||
} | ||
|
||
} |