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


PHP TranslationProxy::get_service_promo方法代碼示例

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


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

示例1: display_advanced_filters

    private function display_advanced_filters()
    {
        ?>
        <tr id="icl_dashboard_advanced_filters" valign="top">
            <td>
                <strong><?php 
        echo __('Filters:', 'wpml-translation-management');
        ?>
</strong><br/>
                <fieldset>
                    <div class="fieldset_row">
                        <?php 
        $this->display_post_statuses_select();
        ?>
                    </div>
                    <div class="fieldset_row">
                        <?php 
        $this->display_post_type_select();
        ?>
                    </div>
                    <div class="fieldset_row">
                        <?php 
        $this->filter_title_textbox();
        ?>
                    </div>
                    <div class="fieldset_row">
                        <?php 
        $this->display_parent_filter_select();
        ?>
                    </div>
                    <div class="fieldset_row" id="icl_parent_filter">
                        <label for="icl_parent_filter_drop" id="icl_parent_filter_label"></label>
                        <select name="filter[parent_id]" id="icl_parent_filter_drop"></select>
                    </div>
                    <div class="fieldset_row">
                        <input id="translation_dashboard_filter" name="translation_dashboard_filter"
                               class="button-primary" type="submit"
                               value="<?php 
        echo __('Display', 'wpml-translation-management');
        ?>
"/>
                    </div>
                </fieldset>
                <?php 
        // filters end */
        ?>

            </td>
            <td align="right">
                <?php 
        echo TranslationProxy::get_service_promo();
        ?>
            </td>
        </tr>
    <?php 
    }
開發者ID:Junaid-Farid,項目名稱:gocnex,代碼行數:56,代碼來源:wpml-tm-dashboard-display-filter.class.php


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