當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ThemeHandlerInterface::getTheme方法代碼示例

本文整理匯總了PHP中Drupal\Core\Extension\ThemeHandlerInterface::getTheme方法的典型用法代碼示例。如果您正苦於以下問題:PHP ThemeHandlerInterface::getTheme方法的具體用法?PHP ThemeHandlerInterface::getTheme怎麽用?PHP ThemeHandlerInterface::getTheme使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Drupal\Core\Extension\ThemeHandlerInterface的用法示例。


在下文中一共展示了ThemeHandlerInterface::getTheme方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: processDefinition

 /**
  * {@inheritdoc}
  */
 public function processDefinition(&$definition, $plugin_id)
 {
     parent::processDefinition($definition, $plugin_id);
     // Add the module or theme path to the 'path'.
     if ($this->moduleHandler->moduleExists($definition['provider'])) {
         $definition['provider_type'] = 'module';
         $base_path = $this->moduleHandler->getModule($definition['provider'])->getPath();
     } elseif ($this->themeHandler->themeExists($definition['provider'])) {
         $definition['provider_type'] = 'theme';
         $base_path = $this->themeHandler->getTheme($definition['provider'])->getPath();
     } else {
         $base_path = '';
     }
     $definition['path'] = !empty($definition['path']) ? $base_path . '/' . $definition['path'] : $base_path;
     // Add the path to the icon filename.
     if (!empty($definition['icon'])) {
         $definition['icon'] = $definition['path'] . '/' . $definition['icon'];
     }
     // If 'template' is set, then we'll derive 'template_path' and 'theme'.
     if (!empty($definition['template'])) {
         $template_parts = explode('/', $definition['template']);
         $definition['template'] = array_pop($template_parts);
         $definition['theme'] = strtr($definition['template'], '-', '_');
         $definition['template_path'] = $definition['path'];
         if (count($template_parts) > 0) {
             $definition['template_path'] .= '/' . implode('/', $template_parts);
         }
     }
     // If 'css' is set, then we'll derive 'library'.
     if (!empty($definition['css'])) {
         $definition['css'] = $definition['path'] . '/' . $definition['css'];
         $definition['library'] = 'layout_plugin/' . $plugin_id;
     }
     // Generate the 'region_names' key from the 'regions' key.
     $definition['region_names'] = array();
     if (!empty($definition['regions']) && is_array($definition['regions'])) {
         foreach ($definition['regions'] as $region_id => $region_definition) {
             $definition['region_names'][$region_id] = $region_definition['label'];
         }
     }
 }
開發者ID:AllieRays,項目名稱:debugging-drupal-8,代碼行數:44,代碼來源:LayoutPluginManager.php

示例2: getGroupProviders

 /**
  * {@inheritdoc}
  */
 public function getGroupProviders($group)
 {
     $providers = array();
     $breakpoints = $this->getBreakpointsByGroup($group);
     foreach ($breakpoints as $breakpoint) {
         $provider = $breakpoint->getProvider();
         $extension = FALSE;
         if ($this->moduleHandler->moduleExists($provider)) {
             $extension = $this->moduleHandler->getModule($provider);
         } elseif ($this->themeHandler->themeExists($provider)) {
             $extension = $this->themeHandler->getTheme($provider);
         }
         if ($extension) {
             $providers[$extension->getName()] = $extension->getType();
         }
     }
     return $providers;
 }
開發者ID:ddrozdik,項目名稱:dmaps,代碼行數:21,代碼來源:BreakpointManager.php


注:本文中的Drupal\Core\Extension\ThemeHandlerInterface::getTheme方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。