當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。