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


PHP Twig_Loader_Filesystem::getNamespaces方法代碼示例

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


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

示例1: testGetNamespaces

 public function testGetNamespaces()
 {
     $loader = new Twig_Loader_Filesystem(sys_get_temp_dir());
     $this->assertEquals(array(Twig_Loader_Filesystem::MAIN_NAMESPACE), $loader->getNamespaces());
     $loader->addPath(sys_get_temp_dir(), 'named');
     $this->assertEquals(array(Twig_Loader_Filesystem::MAIN_NAMESPACE, 'named'), $loader->getNamespaces());
 }
開發者ID:sharenjoy,項目名稱:axes,代碼行數:7,代碼來源:FilesystemTest.php

示例2: testGetNamespaces

 public function testGetNamespaces()
 {
     $loader = new Twig_Loader_Filesystem(sys_get_temp_dir());
     $this->assertEquals(array('__main__'), $loader->getNamespaces());
     $loader->addPath(sys_get_temp_dir(), 'named');
     $this->assertEquals(array('__main__', 'named'), $loader->getNamespaces());
 }
開發者ID:joan16v,項目名稱:symfony2_test,代碼行數:7,代碼來源:FilesystemTest.php

示例3: dump

 public function dump()
 {
     $finder = new Finder();
     $twigNamespaces = $this->loader->getNamespaces();
     foreach ($twigNamespaces as $ns) {
         if (count($this->loader->getPaths($ns)) > 0) {
             $iterator = $finder->files()->in($this->loader->getPaths($ns));
             foreach ($iterator as $file) {
                 /** @var SplFileInfo $file */
                 $resource = new TwigResource($this->loader, '@' . $ns . '/' . $file->getRelativePathname());
                 $this->lam->addResource($resource, 'twig');
             }
         }
     }
     foreach ($this->lam->getNames() as $name) {
         $asset = $this->lam->get($name);
         $formula = $this->lam->getFormula($name);
         $debug = isset($formula[2]['debug']) ? $formula[2]['debug'] : $this->lam->isDebug();
         $combine = isset($formula[2]['combine']) ? $formula[2]['combine'] : null;
         if (null !== $combine ? !$combine : $debug) {
             foreach ($asset as $leaf) {
                 $this->aw->writeAsset($leaf);
             }
         } else {
             $this->aw->writeAsset($asset);
         }
     }
 }
開發者ID:saxulum,項目名稱:saxulum-assetic-twig-provider,代碼行數:28,代碼來源:Dumper.php

示例4: __construct

 /**
  * TwigFilesystemProvider constructor.
  * @param \Twig_Loader_Filesystem $loader
  * @param string $root_path
  * @param string $namespace
  */
 public function __construct(\Twig_Loader_Filesystem $loader, $root_path, $namespace)
 {
     $this->loader = $loader;
     $this->namespace = $namespace;
     if (!in_array($namespace, $loader->getNamespaces())) {
         $loader->addPath($root_path, $namespace);
     }
 }
開發者ID:perfumer,項目名稱:framework,代碼行數:14,代碼來源:TwigFilesystemProvider.php

示例5: getPaths

 /**
  * Get the template directories
  *
  * @return TemplatePath[]
  */
 public function getPaths()
 {
     $paths = [];
     foreach ($this->twigLoader->getNamespaces() as $namespace) {
         $name = $namespace !== TwigFilesystem::MAIN_NAMESPACE ? $namespace : null;
         foreach ($this->twigLoader->getPaths($namespace) as $path) {
             $paths[] = new TemplatePath($path, $name);
         }
     }
     return $paths;
 }
開發者ID:weierophinney,項目名稱:zend-expressive-twigrenderer,代碼行數:16,代碼來源:TwigRenderer.php

示例6: getTemplatesNamespaces

 /**
  * Get templates directories namespaces.
  * @return array An array of namespaces used to reference templates directories.
  */
 public function getTemplatesNamespaces()
 {
     return $this->_loader->getNamespaces();
 }
開發者ID:bgillet,項目名稱:slim-twig,代碼行數:8,代碼來源:TwigView.php


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