예제 #1
0
 /**
  * {@inheritdoc}
  */
 protected function findTemplate($template)
 {
     $templateName = (string) $template;
     // Only try and load templates which aren't namespaced
     if (strpos($templateName, '@theme/') === 0) {
         $templatePath = str_replace('@theme', '', $templateName);
         $theme = $this->themeManager->getAdminTheme();
         return parent::findTemplate('@theme_' . $theme->getName() . $templatePath);
     }
     if (strpos($templateName, 'theme_') === 0) {
         if (preg_match('/theme_([^:]+):([^:]*):(.*)/', $templateName, $matches)) {
             list($fullName, $themeName, $path, $file) = $matches;
             $theme = $this->themeManager->getTheme($themeName);
             return parent::findTemplate('@theme_' . $theme->getName() . $path . '/' . $file);
         }
     }
     return parent::findTemplate($template);
 }
예제 #2
0
 /**
  * Get the admin theme namespace
  */
 public function getAdminTheme()
 {
     $this->themeManager->getAdminTheme();
 }