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


PHP langswitch_filter_langs_with_message函数代码示例

本文整理汇总了PHP中langswitch_filter_langs_with_message函数的典型用法代码示例。如果您正苦于以下问题:PHP langswitch_filter_langs_with_message函数的具体用法?PHP langswitch_filter_langs_with_message怎么用?PHP langswitch_filter_langs_with_message使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: i18n

 /**
  * Support for i18n with wpml, polyglot or qtrans
  *
  * @param string $in
  * @param string $name (optional) required for wpml to determine the type of translation
  * @return string $in localized
  */
 static function i18n($in, $name = null)
 {
     if (function_exists('langswitch_filter_langs_with_message')) {
         $in = langswitch_filter_langs_with_message($in);
     }
     if (function_exists('polyglot_filter')) {
         $in = polyglot_filter($in);
     }
     if (function_exists('qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')) {
         $in = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($in);
     }
     if (is_string($name) && !empty($name) && function_exists('icl_translate')) {
         $in = icl_translate('plugin_ngg', $name, $in, true);
     }
     $in = apply_filters('localization', $in);
     return $in;
 }
开发者ID:ayoayco,项目名称:upbeat,代码行数:24,代码来源:core.php

示例2: internationalize

 function internationalize($in)
 {
     if (function_exists('langswitch_filter_langs_with_message')) {
         $in = langswitch_filter_langs_with_message($in);
     }
     if (function_exists('polyglot_filter')) {
         $in = polyglot_filter($in);
     }
     if (function_exists('qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')) {
         $in = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($in);
     }
     $in = apply_filters('localization', $in);
     return $in;
 }
开发者ID:EddieRingle,项目名称:wicketpixie,代码行数:14,代码来源:all_in_one_seo_pack.php

示例3: internationalize

 function internationalize($in)
 {
     if (function_exists('langswitch_filter_langs_with_message')) {
         $in = langswitch_filter_langs_with_message($in);
     }
     if (function_exists('polyglot_filter')) {
         $in = polyglot_filter($in);
     }
     return $in;
 }
开发者ID:popovdenis,项目名称:kmst,代码行数:10,代码来源:all_in_one_seo_pack.php


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