本文整理汇总了PHP中Drupal\Core\Extension\ModuleHandlerInterface::getModule方法的典型用法代码示例。如果您正苦于以下问题:PHP ModuleHandlerInterface::getModule方法的具体用法?PHP ModuleHandlerInterface::getModule怎么用?PHP ModuleHandlerInterface::getModule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Drupal\Core\Extension\ModuleHandlerInterface
的用法示例。
在下文中一共展示了ModuleHandlerInterface::getModule方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onMigratePostImport
/**
* @param \Drupal\migrate\Event\MigrateImportEvent $event
*/
public function onMigratePostImport(MigrateImportEvent $event)
{
if ('basic_block' === $event->getMigration()->get('id')) {
$files = ['block.block.callforpaper.yml', 'block.block.featuredfirst.yml', 'block.block.featuredsecond.yml', 'block.block.featuredthird.yml', 'block.block.mentorship.yml', 'block.block.training.yml'];
foreach ($files as $file) {
$base_path = $this->moduleHandler->getModule('ddd_fixtures')->getPath();
$contents = @file_get_contents($base_path . '/sources/block_configs/' . $file);
$config_name = basename('sources/block_configs/' . $file, '.yml');
$data = (new InstallStorage())->decode($contents);
$this->configFactory->getEditable($config_name)->setData($data)->save();
}
}
}
示例2: getConfigStorage
/**
* Gets the currency config storage.
*
* @return \Drupal\Core\Config\StorageInterface
*/
protected function getConfigStorage()
{
if (!$this->configStorage) {
$this->configStorage = new FileStorage($this->moduleHandler->getModule('currency')->getPath() . '/config/default/');
}
return $this->configStorage;
}
示例3: getDirectoryPath
/**
* {@inheritdoc}
*/
public function getDirectoryPath()
{
$module_path = $this->moduleHandler->getModule('libraries')->getPath();
return $module_path . '/tests/' . $this->directory;
}