public function LingotekProfileUsage::isUsedByConfig in Lingotek Translation 8
Same name and namespace in other branches
- 8.2 src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 4.0.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.0.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.1.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.2.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.3.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.4.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.5.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.6.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.7.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
- 3.8.x src/LingotekProfileUsage.php \Drupal\lingotek\LingotekProfileUsage::isUsedByConfig()
Check if a profile is configured to be used by config entities.
Parameters
\Drupal\lingotek\LingotekProfileInterface $profile: The profile being checked.
Return value
int Bitwise flag. Can include LingotekProfileUsageInterface::USED_BY_CONFIG or LingotekProfileUsageInterface::UNUSED.
Overrides LingotekProfileUsageInterface::isUsedByConfig
File
- src/
LingotekProfileUsage.php, line 70
Class
- LingotekProfileUsage
- Service for checking Lingotek profiles usage.
Namespace
Drupal\lingotekCode
public function isUsedByConfig(LingotekProfileInterface $profile) {
$mappers = $this->configMapperManager
->getMappers();
$used = LingotekProfileUsageInterface::UNUSED;
foreach ($mappers as $plugin_id => $mapper) {
$config_profile = $this->lingotekConfiguration
->getConfigProfile($plugin_id, FALSE);
if ($config_profile !== NULL && $config_profile
->id() === $profile
->id()) {
$used |= LingotekProfileUsageInterface::USED_BY_CONFIG;
}
}
return $used;
}