当前位置: 首页>>代码示例>>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;未经允许,请勿转载。