WC_Admin_Webhooks_Table_List::display_tablenav() protected WC 1.0
Generate the table navigation above or below the table. Included to remove extra nonce input.
{} Это метод класса: WC_Admin_Webhooks_Table_List{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->display_tablenav( $which );
- $which(строка) (обязательный)
- The location of the extra table nav markup: 'top' or 'bottom'.
Код WC_Admin_Webhooks_Table_List::display_tablenav() WC Admin Webhooks Table List::display tablenav WC 5.0.0
protected function display_tablenav( $which ) {
echo '<div class="tablenav ' . esc_attr( $which ) . '">';
if ( $this->has_items() ) {
echo '<div class="alignleft actions bulkactions">';
$this->bulk_actions( $which );
echo '</div>';
}
$this->extra_tablenav( $which );
$this->pagination( $which );
echo '<br class="clear" />';
echo '</div>';
}