Automattic\WooCommerce\Internal\StockNotifications\Admin
ListTable::no_items
Message to be displayed when there are no items.
Method of the class: ListTable{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ListTable = new ListTable(); $ListTable->no_items();
ListTable::no_items() ListTable::no items code WC 10.3.6
<?php
public function no_items() {
?>
<p class="main">
<?php esc_html_e( 'No Notifications found', 'woocommerce' ); ?>
</p>
<?php
}