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


PHP Utils::pathPrefixedByLangCode方法代码示例

本文整理汇总了PHP中Grav\Common\Utils::pathPrefixedByLangCode方法的典型用法代码示例。如果您正苦于以下问题:PHP Utils::pathPrefixedByLangCode方法的具体用法?PHP Utils::pathPrefixedByLangCode怎么用?PHP Utils::pathPrefixedByLangCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Grav\Common\Utils的用法示例。


在下文中一共展示了Utils::pathPrefixedByLangCode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: redirect

 /**
  * Redirect to the route stored in $this->redirect
  */
 public function redirect()
 {
     if (!$this->redirect) {
         return;
     }
     $base = $this->admin->base;
     $this->redirect = '/' . ltrim($this->redirect, '/');
     $multilang = $this->isMultilang();
     $redirect = '';
     if ($multilang) {
         // if base path does not already contain the lang code, add it
         $langPrefix = '/' . $this->grav['session']->admin_lang;
         if (!Utils::startsWith($base, $langPrefix . '/')) {
             $base = $langPrefix . $base;
         }
         // now the first 4 chars of base contain the lang code.
         // if redirect path already contains the lang code, and is != than the base lang code, then use redirect path as-is
         if (Utils::pathPrefixedByLangCode($base) && Utils::pathPrefixedByLangCode($this->redirect) && substr($base, 0, 4) != substr($this->redirect, 0, 4)) {
             $redirect = $this->redirect;
         } else {
             if (!Utils::startsWith($this->redirect, $base)) {
                 $this->redirect = $base . $this->redirect;
             }
         }
     } else {
         if (!Utils::startsWith($this->redirect, $base)) {
             $this->redirect = $base . $this->redirect;
         }
     }
     if (!$redirect) {
         $redirect = $this->redirect;
     }
     $this->grav->redirect($redirect, $this->redirectCode);
 }
开发者ID:clee03,项目名称:metal,代码行数:37,代码来源:controller.php

示例2: testPathPrefixedByLangCode

 public function testPathPrefixedByLangCode()
 {
     $languagesEnabled = $this->grav['config']->get('system.languages.supported', []);
     $arrayOfLanguages = ['en', 'de', 'it', 'es', 'dk', 'el'];
     $languagesNotEnabled = array_diff($arrayOfLanguages, $languagesEnabled);
     $oneLanguageNotEnabled = reset($languagesNotEnabled);
     if (count($languagesEnabled)) {
         $this->assertTrue(Utils::pathPrefixedByLangCode('/' . $languagesEnabled[0] . '/test'));
     }
     $this->assertFalse(Utils::pathPrefixedByLangCode('/' . $oneLanguageNotEnabled . '/test'));
     $this->assertFalse(Utils::pathPrefixedByLangCode('/test'));
     $this->assertFalse(Utils::pathPrefixedByLangCode('/xx'));
     $this->assertFalse(Utils::pathPrefixedByLangCode('/xx/'));
     $this->assertFalse(Utils::pathPrefixedByLangCode('/'));
 }
开发者ID:getgrav,项目名称:grav,代码行数:15,代码来源:UtilsTest.php


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