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


PHP WP_List_Table::display_tablenav方法代碼示例

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


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

示例1: display_tablenav

 public function display_tablenav($which)
 {
     $screen = get_current_screen();
     if ($screen->id != 'wc_crm_accounts') {
         parent::display_tablenav($which);
     }
 }
開發者ID:daanbakker1995,項目名稱:vanteun,代碼行數:7,代碼來源:class-wc-crm-table-customers.php

示例2: display_tablenav

 /**
  * Generate the table navigation above or below the table
  */
 public function display_tablenav($which)
 {
     if ('top' == $which) {
         return;
     }
     parent::display_tablenav($which);
 }
開發者ID:sabdev1,項目名稱:sabstaff,代碼行數:10,代碼來源:class-wc-paid-listings-admin-packages.php

示例3: display_tablenav

 /**
  * Don't need this.
  */
 public function display_tablenav($position)
 {
     if ($position != 'top') {
         parent::display_tablenav($position);
     }
 }
開發者ID:bitoncoin,項目名稱:woocommerce,代碼行數:9,代碼來源:class-wc-report-stock.php

示例4:

    /**
     * Generate the table navigation above or below the table
     *
     * @since 1.2
     */
    function display_tablenav($which)
    {
        if ('top' == $which) {
            ?>
		<input type="hidden" name="page" value="<?php 
            echo $_REQUEST['page'];
            ?>
" />
		<?php 
            if (isset($_REQUEST['status'])) {
                ?>
		<input type="hidden" name="status" value="<?php 
                echo $_REQUEST['status'];
                ?>
" />
		<?php 
            }
        }
        parent::display_tablenav($which);
    }
開發者ID:bulats,項目名稱:chef,代碼行數:25,代碼來源:class-wc-subscriptions-list-table.php

示例5: display_tablenav

 protected function display_tablenav($which)
 {
     if ($this->display_nav) {
         parent::display_tablenav($which);
     }
 }
開發者ID:nagyistoce,項目名稱:supportflow,代碼行數:6,代碼來源:class-supportflow-table.php

示例6: display_tablenav

 public function display_tablenav($which)
 {
     if ('top' == $which) {
         $_SERVER['REQUEST_URI'] = $this->wp->removeQueryArgument('_wp_http_referer', $_SERVER['REQUEST_URI']);
     }
     parent::display_tablenav($which);
 }
開發者ID:pmanterys,項目名稱:wp-mw-newsletter,代碼行數:7,代碼來源:ListTable.php

示例7: display_tablenav

 /**
  * Generate the table navigation above or below the table
  *
  * @since  3.1.0
  * @access protected
  *
  * @param string $which
  */
 protected function display_tablenav($which)
 {
     /**
      * Custom nonce
      */
     if ('top' == $which) {
         echo '<input type="hidden" name="nonce" value="' . $this->nonce . '">';
     }
     parent::display_tablenav(FALSE);
 }
開發者ID:biont,項目名稱:wordpress-subplugins,代碼行數:18,代碼來源:Biont_SubPlugins_PluginListTable.php

示例8:

 function display_tablenav($which)
 {
     if ('bottom' != $which) {
         parent::display_tablenav($which);
     }
 }
開發者ID:JDogHerman,項目名稱:u2f-login,代碼行數:6,代碼來源:class.list-table.php

示例9:

	function display_tablenav( $which ) {
		global $status;

		if ( !in_array( $status, array( 'mustuse', 'dropins' ) ) )
			parent::display_tablenav( $which );
	}
開發者ID:realfluid,項目名稱:umbaugh,代碼行數:6,代碼來源:class-wp-plugins-list-table.php

示例10:

 function display_tablenav($which)
 {
     parent::display_tablenav($which);
 }
開發者ID:Nanotraktor,項目名稱:AVH-First-Defense-Against-Spam,代碼行數:4,代碼來源:avh-fdas.ipcachelist.php


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