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


PHP TranslationProxy::is_current_service_active_and_authenticated方法代码示例

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


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

示例1: build_content_dashboard_fetch_translations_box

    public function build_content_dashboard_fetch_translations_box()
    {
        if (TranslationProxy::is_current_service_active_and_authenticated()) {
            ?>
            <div id="icl_tm_pickup_wrap">
                <div class="icl_cyan_box">
                    <div id="icl_tm_pickup_wrap_errors" class="icl_tm_pickup_wrap" style="display:none"><p></p></div>
                    <div id="icl_tm_pickup_wrap_completed" class="icl_tm_pickup_wrap" style="display:none"><p></p></div>
                    <div id="icl_tm_pickup_wrap_cancelled" class="icl_tm_pickup_wrap" style="display:none"><p></p></div>
	                <div id="icl_tm_pickup_wrap_error_submitting" class="icl_tm_pickup_wrap" style="display:none"><p></p></div>
	                <p id="icl_pickup_nof_jobs"></p>
	                <p><input type="button" class="button-secondary" value="" id="icl_tm_get_translations"/></p>
	                <p id="icl_pickup_last_pickup"></p>
                </div>
            </div>
	        <br clear="all"/>
            <?php 
            wp_nonce_field('icl_pickup_translations_nonce', '_icl_nonce_pickup_t');
            wp_nonce_field('icl_populate_translations_pickup_box_nonce', '_icl_nonce_populate_t');
        }
    }
开发者ID:tlandn,项目名称:akvo-sites-zz-template,代码行数:21,代码来源:wpml-tm-menus.class.php

示例2: build_content_dashboard_fetch_translations_box

 public function build_content_dashboard_fetch_translations_box()
 {
     if (TranslationProxy::is_current_service_active_and_authenticated()) {
         $tp_polling_box = new WPML_TP_Polling_Box();
         echo $tp_polling_box->render();
     }
 }
开发者ID:studiopengpeng,项目名称:ASCOMETAL,代码行数:7,代码来源:wpml-tm-menus.class.php


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