LingotekWorkbenchModerationCheckTrait.php in Lingotek Translation 3.1.x
Same filename and directory in other branches
- 8.2 src/Moderation/LingotekWorkbenchModerationCheckTrait.php
- 4.0.x src/Moderation/LingotekWorkbenchModerationCheckTrait.php
- 3.2.x src/Moderation/LingotekWorkbenchModerationCheckTrait.php
- 3.3.x src/Moderation/LingotekWorkbenchModerationCheckTrait.php
- 3.4.x src/Moderation/LingotekWorkbenchModerationCheckTrait.php
- 3.5.x src/Moderation/LingotekWorkbenchModerationCheckTrait.php
- 3.6.x src/Moderation/LingotekWorkbenchModerationCheckTrait.php
- 3.7.x src/Moderation/LingotekWorkbenchModerationCheckTrait.php
- 3.8.x src/Moderation/LingotekWorkbenchModerationCheckTrait.php
Namespace
Drupal\lingotek\ModerationFile
src/Moderation/LingotekWorkbenchModerationCheckTrait.phpView source
<?php
namespace Drupal\lingotek\Moderation;
use Drupal\Core\Extension\ModuleHandlerInterface;
/**
* Utility methods for all the 'workbench_moderation' moderation services.
*
* @package Drupal\lingotek\Moderation
*/
trait LingotekWorkbenchModerationCheckTrait {
/**
* The module handler service.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* {@inheritdoc}
*/
public function applies() {
return $this->moduleHandler
->moduleExists('workbench_moderation');
}
/**
* {@inheritdoc}
*/
public function setModuleHandler(ModuleHandlerInterface $module_handler) {
$this->moduleHandler = $module_handler;
return $this;
}
}
Traits
Name | Description |
---|---|
LingotekWorkbenchModerationCheckTrait | Utility methods for all the 'workbench_moderation' moderation services. |