本文整理匯總了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
}