当前位置: 首页>>代码示例>>PHP>>正文


PHP ModuleHandlerInterface::getModule方法代码示例

本文整理汇总了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();
         }
     }
 }
开发者ID:itamair,项目名称:ddd-website,代码行数:16,代码来源:PostImportEventSubscriber.php

示例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;
 }
开发者ID:nishantkumar155,项目名称:drupal8.crackle,代码行数:12,代码来源:ConfigImporter.php

示例3: getDirectoryPath

 /**
  * {@inheritdoc}
  */
 public function getDirectoryPath()
 {
     $module_path = $this->moduleHandler->getModule('libraries')->getPath();
     return $module_path . '/tests/' . $this->directory;
 }
开发者ID:hugronaphor,项目名称:cornel,代码行数:8,代码来源:TestLibraryFilesStream.php


注:本文中的Drupal\Core\Extension\ModuleHandlerInterface::getModule方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。